Following are the HTTP response codes our API may return.
| Code | Status | Description |
|---|---|---|
| 200 | OK | It worked! |
| 201 | Created | The resource was created successfully. The body should contain a "links" map with a "self" field that contains the new URL to access the created resource. Alternatively, the URL will be in the "Location" header |
| 202 | Accepted | When using test_auth=true, this response code indicates that the auth_token is valid. |
| 204 | No Content | The request succeeded and the response does not contain any content. |
| 400 | Bad Request | The request was invalid. You may be missing a required argument or provided bad data. An error message will be returned explaining what happened. |
| 401 | Unauthorized | The authentication you provided is invalid. |
| 403 | Forbidden | You don't have permission to complete the operation or access the resource. |
| 404 | Not Found | You requested an invalid method. |
| 405 | Method Not Allowed | The method specified in the Request-Line is not allowed for the resource identified by the Request-URI. (used POST instead of PUT) |
| 429 | Too Many Requests | You have exceeded the rate limit. |
| 500 | Internal Server Error | Something is wrong on our end. We'll investigate what happened. Feel free to contact us. |
| 503 | Service Unavailable | The method you requested is currently unavailable (due to maintenance or high load). |
Rate this page: