The following errors are valid:

200OKEverything worked successfully!
201CreatedWhen you're creating a new order, this will be returned upon success.
400Bad RequestWe could not process the action.
403ForbiddenWe 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.