4XX
error uses this application/json
format:
Code | Meaning | Description | Possible solution |
---|---|---|---|
200 | OK | Everything worked as expected | N/A—the request was successful |
400 | Bad Request | The request was unacceptable, often due to malformed syntax, or a missing or malformed parameter | Ensure request syntax is correct |
401 | Invalid access token | Requestor is unauthorized or does not have permission for this API call | Ensure API token is valid |
403 | Forbidden | Requestor does not have access to this resource | Ensure API token is valid |
404 | Resource not found | The requested resource does not exist | Ensure ID of requested resource is valid |
409 | Conflict | The request could not be processed due to a conflict with the current state of an existing resource | Ensure that the object doesn’t already exist, and if using an Idempotency-Key header, check that it’s unique |
429 | Too Many Requests | Too many requests hit the API too quickly | Wait and try again later |
5XX | Server Errors | Something went wrong while servicing your request | Retry your request. If using Idempotency-Key header, verify that resource was not partially created and retry using a different key |