General Errors
| Status Code | Reason | Description |
400 |
Bad Request |
This error is found on POST and PATCH endpoints. The request body contains malformed or unsupported data. |
401 |
Unauthorized |
The JWT used in the request is invalid (e.g. expired). |
403 |
Forbidden |
The request user does not have access to the desired resource or have the necessary permissions to perform the desired action. |
404 |
Not Found |
The requested resource does not exist. |
405 |
Method Not Allowed |
The HTTP method used (e.g POST) is not accepted for the endpoint. |
406 |
Not Acceptable |
The content type (e.g. MIME type) used is not accepted |
409 |
Conflict |
This error is found on POST endpoints. The resource already exists. |
410 |
Gone |
The resource has been deleted. |
422 |
Unprocessable Entity |
The Server cannot process the request. |
401
| Status Code | Reason | Description |
401.1 |
Unauthorized |
The JWT used in the request has expired. |
401.2 |
Unauthorized |
Authentication failed due to an invalid or missing "issued at" ( |
401.4 |
Unauthorized |
Mismatch in the |