Download OpenAPI specification:
Authorization
HTTP header with the appropriate token.Authorization
.Authorization
header is needed at this stage since you don’t yet have a token. Follow the signup instructions and provide the required request data.POST /v1/developerToken/grantAccessToken
Authorization: Bearer <Developer-Token>
callbackUri
(optional): The URI to redirect to after approval or denial (e.g., http://www.ready2order.com?your-extra-param=123
).grantAccessToken
: The token for the next step.grantAccessUri
: The full URI to approve access.grantAccessUri
in the next step.grantAccessUri
from the previous step.callbackUri
was specified, the API redirects to it with these parameters:accountToken
: The Account Token (if approved).grantAccessToken
: The Grant Access Token used.status
: approved
or denied
.http://www.ready2order.com?your-extra-param=123&accountToken=<ACCOUNT_TOKEN>&grantAccessToken=<GRANT_ACCESS_TOKEN>&status=approved
Authorization
header for all account data interactions.ready2order supports webhooks to notify your application of events in real time, providing an optimal experience.
Event | Description |
---|---|
product.created |
Triggered when a new product is created. |
product.updated |
Triggered when an existing product is updated. |
product.deleted |
Triggered when an existing product is deleted. |
productGroup.created |
Triggered when a new product group is created. |
productGroup.updated |
Triggered when an existing product group is updated. |
productGroup.deleted |
Triggered when an existing product group is deleted. |
invoice.created |
Triggered when a new receipt (e.g., bill, invoice, payment receipt) is created. |
orderItem.created |
Triggered when a gastro-order is booked on a table. |
created
and updated
Events:resource
array of the webhook payload, eliminating the need for additional API calls.deleted
Events: