# Server responses
All requests will respond with one of the following status codes.
| Code | Description |
|---|---|
| 200 | The request completed successfully |
| 201 | The request completed successfully and a new resource has been created |
| 400 | The request was bad |
| 404 | The requested entity was not found or the request was not authenticated |
| 409 | The request attempted to create or modify a resource such that it would create a conflict. For example creating a resource that already exists |
| 422 | The request could be parsed, but there was an error with the request body |
| 500 | An unexpected server error was encountered |
All responses will include at least a status field.
Valid request
A status value of ok indicates the request was successful.
WARNING
Other values can be returned depending on the context.