The Clumio REST API uses the following HTTP status codes:
HTTP Status Codes | Description |
---|---|
200 OK | Successful |
201 Created | The request has led to the creation of a resource on the server. |
202 Accepted | The request has been accepted for processing, but the processing has not been completed. |
400 Bad Request | Invalid action or missing data. Refer to the error message in the response payload for more information. |
401 Unauthorized | Token expired. Re-authenticate into the REST API. |
403 Forbidden | Client not authorized to perform this action. |
404 Not Found | Resource not found. |
409 Conflict | Duplicate item, such as user, data source, or policy, specified. |
412 Precondition Failed | Action being performed does not meet certain preconditions. Refer to the error message in the response payload for more information. |
429 Too Many Requests | Request failed due to API rate-limit throttling. After some back-off time, retry the request. For more information, go to API Throttling. |
A 200 OK
status code confirms that the REST API action was successful. A 201 Created
status code indicates that the request has led to the creation of the resource on the server. A 202 Accepted
status code confirms that the request has been accepted and is in progress. All other responses generate a 4xx
status code indicating an unsuccessful action that requires resolution. Go to the HTTP Status Code chart for steps on how to resolve the issue.