> ## Documentation Index
> Fetch the complete documentation index at: https://developers.illuxi.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Status Codes

> All possible response status codes.

## Different status codes

If the status code is 200, the request WAS successful.

If the status code is not 200 or 201, the request failed. The response body includes a message field explaining the reason for the failure.

| Response status code | Status             | Description                                                                                               |
| -------------------- | ------------------ | --------------------------------------------------------------------------------------------------------- |
| 200                  | OK                 | The request was successful, and the server <br />returned the requested data.                             |
| 201                  | Created            | The request was successful, a resource was <br />created and the server returns the requested <br />data. |
| 400                  | Invalid request    | The request contains an error. <br />No data was created or modified.                                     |
| 401                  | Unauthorized       | The authentication token is invalid.                                                                      |
| 403                  | Forbidden          | The user is authenticated but does not have<br />permission to perform the requested <br />operation.     |
| 404                  | Not found          | The server could not find the requested<br />resource.                                                    |
| 405                  | Method not allowed | The HTTP method used is not allowed<br />for this endpoint.                                               |
| 408                  | Request Timeout    | The request timed out.                                                                                    |
