Download OpenAPI specification:Download
The Cloudline integration API is for industry partners to access and interact with Cloudline platform data such as making orders for our kitchen management system, generating custom menus from our Menu management system and/or custom reporting solutions.
Gets a list of organizations you have access to based on your api key
Success
Bad Request
Unauthorized
Forbidden
Internal Server Error
const resp = await fetch( `https://api2.cloudlineapp.com/v1/organizations`, { method: 'GET', headers: { Authorization: 'Bearer <YOUR_JWT_HERE>' } } ); const data = await resp.text(); console.log(data);
[- {
- "id": "1337-1337-1337-1337",
- "name": "Cloud9"
}
]
Gets a list of sites you have access to based on your api key
Success
Bad Request
Unauthorized
Forbidden
Internal Server Error
const resp = await fetch( `https://api2.cloudlineapp.com/v1/sites`, { method: 'GET', headers: { Authorization: 'Bearer <YOUR_JWT_HERE>' } } ); const data = await resp.text(); console.log(data);
[- {
- "id": "1337-1337-1337-1337",
- "name": "Cloud9",
- "organization_id": "1337-1337-1337-1337"
}
]
Get a single activity based on its unique ID.
Success
Bad Request
Unauthorized
Forbidden
Internal Server Error
const activityId = 'YOUR_activity_id_PARAMETER'; const resp = await fetch( `https://api2.cloudlineapp.com/v1/activities/${activityId}`, { method: 'GET', headers: { Authorization: 'Bearer <YOUR_JWT_HERE>' } } ); const data = await resp.text(); console.log(data);
{- "id": "1337-1337-1337-1337",
- "name": "Relax on Cloud9",
- "description": "Come on down to the Cloud9 Relax Zone and chill.",
- "type": "POI",
- "site_id": "1337-1337-1337-1337"
}
Gets a list of activities which you have access to.
Success
Bad Request
Unauthorized
Forbidden
Internal Server Error
const resp = await fetch( `https://api2.cloudlineapp.com/v1/activities`, { method: 'GET', headers: { Authorization: 'Bearer <YOUR_JWT_HERE>' } } ); const data = await resp.text(); console.log(data);
[- {
- "id": "1337-1337-1337-1337",
- "name": "Relax on Cloud9",
- "description": "Come on down to the Cloud9 Relax Zone and chill.",
- "type": "POI",
- "site_id": "1337-1337-1337-1337"
}
]
Get a single order based on its unique ID.
Success
Bad Request
Unauthorized
Forbidden
Internal Server Error
const orderId = 'YOUR_order_id_PARAMETER'; const resp = await fetch( `https://api2.cloudlineapp.com/v1/orders/${orderId}`, { method: 'GET', headers: { Authorization: 'Bearer <YOUR_JWT_HERE>' } } ); const data = await resp.text(); console.log(data);
{- "id": "1337-1337-1337-1337",
- "organization_id": "1337-1337-1337-1337",
- "site_id": "1337-1337-1337-1337",
- "activity_id": "1337-1337-1337-1337",
- "state": "BASKET",
- "price": 420,
- "fee": 42,
- "discounted_price": 0,
- "submitted": "2022-05-14:20:40.20Z",
- "type": "DELIVERY",
- "customer": {
- "id": "1337-1337-1337-1337",
- "first_name": "Hugh",
- "last_name": "Jackman",
- "email": "hugh.jackman@example.com",
- "phone_number": "+421111111111"
}, - "items": [
- {
- "name": "Cloud9 Fries",
- "price": "420,",
- "menu_item_id": "1337-1337-1337-1337",
- "order_item_id": "1337-1337-1337-1337",
- "order_item_state": "DELIVERED"
}
], - "external_reference_id": "1337-1337-1337-1337",
- "integration_partner_id": "1337-1337-1337-1337",
- "integration_device_id": "1337-1337-1337-1337",
- "integration_device_operator_id": "1337-1337-1337-1337",
- "last_updated": "2022-05-14:20:40.20Z"
}
Gets a list of orders from an Restaurant type Activity or across a whole Site.
Orders can be queried for a period of up to one month at a time.
Please be aware that querying for a large number of orders across a large number of Restaurant times will take a while if the query has not been made recently and cached.
Defaults: If no States are explicitly included or excluded then by default only COMPLETE
and ARCHIVED
orders will be returned.
Success
Bad Request
Unauthorized
Forbidden
Internal Server Error
const query = new URLSearchParams({date: 'string'}).toString(); const resp = await fetch( `https://api2.cloudlineapp.com/v1/orders?${query}`, { method: 'GET', headers: { Authorization: 'Bearer <YOUR_JWT_HERE>' } } ); const data = await resp.text(); console.log(data);
[- {
- "id": "1337-1337-1337-1337",
- "organization_id": "1337-1337-1337-1337",
- "site_id": "1337-1337-1337-1337",
- "activity_id": "1337-1337-1337-1337",
- "state": "BASKET",
- "price": 420,
- "fee": 42,
- "discounted_price": 0,
- "submitted": "2022-05-14:20:40.20Z",
- "type": "DELIVERY",
- "customer": {
- "id": "1337-1337-1337-1337",
- "first_name": "Hugh",
- "last_name": "Jackman",
- "email": "hugh.jackman@example.com",
- "phone_number": "+421111111111"
}, - "items": [
- {
- "name": "Cloud9 Fries",
- "price": "420,",
- "menu_item_id": "1337-1337-1337-1337",
- "order_item_id": "1337-1337-1337-1337",
- "order_item_state": "DELIVERED"
}
], - "external_reference_id": "1337-1337-1337-1337",
- "integration_partner_id": "1337-1337-1337-1337",
- "integration_device_id": "1337-1337-1337-1337",
- "integration_device_operator_id": "1337-1337-1337-1337",
- "last_updated": "2022-05-14:20:40.20Z"
}
]
Create an order which will appear in the Cloudline Kitchen Management System.
Please be aware that currently the Cloudline platform only supports Custom Order Items and does not support referencing existing menu items within the Cloudline platform. Support for referencing menu items within the Cloudline platform will be released in an upcoming update.
This means that when creating an order you should include a list of custom_order_items as listed below in the parameters. Any reference ID's which are included in that data will be reflected in the list Orders endpoint and can be matched up with any external ordering system's own ID's.
This is the order information required to create an order.
Success
Bad Request
Unauthorized
Forbidden
Internal Server Error
{- "activity_id": "string",
- "type": "DELIVERY",
- "state": "ACCEPTED",
- "integration_device_id": "string",
- "integration_partner_id": "string",
- "custom_order_items": [
- {
- "name": "Cloud9 Fries",
- "price": 420,
- "type": "KITCHEN",
- "order_item_state": "PREPARED"
}
]
}
{- "id": "1337-1337-1337-1337",
- "organization_id": "1337-1337-1337-1337",
- "site_id": "1337-1337-1337-1337",
- "activity_id": "1337-1337-1337-1337",
- "state": "BASKET",
- "price": 420,
- "fee": 42,
- "discounted_price": 0,
- "submitted": "2022-05-14:20:40.20Z",
- "type": "DELIVERY",
- "customer": {
- "id": "1337-1337-1337-1337",
- "first_name": "Hugh",
- "last_name": "Jackman",
- "email": "hugh.jackman@example.com",
- "phone_number": "+421111111111"
}, - "items": [
- {
- "name": "Cloud9 Fries",
- "price": "420,",
- "menu_item_id": "1337-1337-1337-1337",
- "order_item_id": "1337-1337-1337-1337",
- "order_item_state": "DELIVERED"
}
], - "external_reference_id": "1337-1337-1337-1337",
- "integration_partner_id": "1337-1337-1337-1337",
- "integration_device_id": "1337-1337-1337-1337",
- "integration_device_operator_id": "1337-1337-1337-1337",
- "last_updated": "2022-05-14:20:40.20Z"
}
Get a menu item based on its ID
Success
Bad Request
Unauthorized
Forbidden
Internal Server Error
const item = 'YOUR_item_PARAMETER'; const resp = await fetch( `https://api2.cloudlineapp.com/v1/menu-items/${item}`, { method: 'GET', headers: { Authorization: 'Bearer <YOUR_JWT_HERE>' } } ); const data = await resp.text(); console.log(data);
{- "id": "1asdlkfja-1asdlkfja-1asdlkfja-1asdlkfja",
- "name": "Cloud9 Fries",
- "price": 420
}
Gets a list of devices which you have access to based on your api key
Success
Bad Request
Unauthorized
Forbidden
Internal Server Error
const query = new URLSearchParams({partner_id: 'string'}).toString(); const resp = await fetch( `https://api2.cloudlineapp.com/v1/devices?${query}`, { method: 'GET', headers: { Authorization: 'Bearer <YOUR_JWT_HERE>' } } ); const data = await resp.text(); console.log(data);
[- {
- "id": "1337-1337-1337-1337",
- "name": "Till 42",
- "description": "Till number 42 located in the play barn.",
- "external_id": "4242-4242-4242-4242",
- "partner_id": "4242-4242-4242-4242"
}
]
Creates a new device. The device ID can then be used to interact with the Cloudline platform. Platform devices are used to trace the origin of a request primarily for debugging and logging purposes.
A good example of this is tracking a Create Order
request back to the Till or POS device which performed the transaction.
This is the information required to create a device.
Success
Bad Request
Unauthorized
Forbidden
Internal Server Error
{- "name": "Till 42",
- "partner_id": "1337-1337-1337-1337",
- "description": "Till number 42 located in the play barn.",
- "external_id": "4242-4242-4242-4242"
}
{- "id": "1337-1337-1337-1337",
- "name": "Till 42",
- "description": "Till number 42 located in the play barn.",
- "external_id": "4242-4242-4242-4242",
- "partner_id": "4242-4242-4242-4242"
}