Errors
The following errors are valid:
200 | OK | Everything worked successfully! |
201 | Created | When you're creating a new order, this will be returned upon success. |
400 | Bad Request | We could not process the action. |
403 | Forbidden | We couldn't authenticate you, or you don't have access to that order. |
All errors will return a JSON blob in the following format:
{
error: true,
message: "Human readable message goes here"
}
Watch out!
We may return errors not listed above, so don't rely on the errors. Check the content of the JSON blob as well.
Updated less than a minute ago