Response Codes¶
Uberflip uses HTTP response codes to indicate success or failure of an API request.
2xx range codes indicate a successful call 4xx range codes indicate an error caused by the information provided such as a missing parameter or an invalid value 5xx range codes indicate an error with Uberflip’s servers
| Response Code | Name | Description |
|---|---|---|
| 200 | OK | The request was successful |
| 201 | Created | Only used when creating a new resource |
| 204 | No Content | The request was successful but it does not return response data |
| 400 | Bad Request | General error, possibly malformed data |
| 401 | Unauthorized | The API credentials or access token are invalid or missing |
| 403 | Forbidden | The request is not allowed |
| 404 | Not Found | The resource was not found |
| 405 | Method Not Allowed | The resource does not accept the HTTP method |
| 408 | Request Timeout | The request has timed out and did not complete |
| 415 | Unsupported Media Type | The submitted content-type is not accepted |
| 429 | Too Many Requests | The client has reached or exceeded a rate limit |
| 500, 502, 503, 504 | Server Error | Something went wrong with Uberflip’s servers |