Introduction

Errors

The Cirro API uses conventional HTTP response codes to indicate the success or failure of an API request. In general, codes in the 2xx range indicate success, codes in the 4xx range indicate an error that failed given the information provided (e.g., a required parameter was omitted, etc.), and codes in the 5xx range indicate an error with Cirro's servers (these are rare).

The body of any error response in the 4xx range will be a JSON object of the following format:

{ "error": "message" }
Previous
Authentication