Open API v2 / Get started / Errors
Errors
WebinOne uses conventional HTTP status codes to signal success or failure. Codes in the 2xx range mean success, 4xx codes indicate a problem with your request, and 5xx codes signal an error on the server.
Status codes
| 200 · 201 | Success — the request returned data or created a resource. |
| 204 | Success with no body (e.g. a delete). |
| 400 | Bad request — validation failed or the body is malformed. |
| 401 | Missing or invalid bearer token. |
| 403 | Authenticated, but not allowed to perform this action. |
| 404 | The resource does not exist. |
| 500 | Something went wrong on the server. |
Error body
Errors return a Problem Details object (RFC 7807): a machine-readable Status plus a human-readable Title and Detail.
{ "Status": 400, "Title": "Validation failed", "Detail": "Name is required." }