Public API access is currently available for approved Early Access participants. To request access, contact your Customer Success Manager to join the waitlist. Joining the waitlist does not guarantee immediate access or credentials. Availability and pricing are subject to change,
This article lists the HTTP status codes returned by the R365 Public API and what to check for each one. For authentication setup, see Getting Started: Authentication & Request Headers. For an overview of R365's integration surfaces, see R365 Public APIs.
Status Codes
Issue | Cause | Resolution |
|---|---|---|
401 | R365 could not authenticate the request. | Confirm the
|
403 | The request was authenticated, but the acting user could not be resolved or is not allowed to perform the action. | Confirm the permissions of the user associated with the token. Learn more about API Managed Users. |
207 | A batch write request completed. Individual items in the batch may still have failed. | Check each entry in the response's |
400 | A query parameter or the request body is malformed. | Check the |
404 | The path or the requested record does not exist. | Check the path spelling and confirm the record belongs to the customer instance in the request. |
415 | The request body was not sent as JSON. | Confirm the write request includes |
422 | The request was understood, but a business rule rejected it. | Check the |
429 | The request rate limit for the customer instance was exceeded. | Slow the request rate and retry with progressive backoff rather than retrying immediately. |
500 | An unexpected error occurred on the Restaurant365 side. | Retry once. If the error persists, contact Restaurant365 Support with the |
Reading Error Responses
Error responses follow RFC 7807 and include a traceId:
{
"type": "https://httpstatuses.io/401",
"title": "Unauthorized",
"status": 401,
"traceId": "00-d941da5d0130684cdd13fa450988c2f7-43a32f3e40dd4402-01"
}Always include the traceId when contacting Support. It lets Restaurant365 locate the exact request.