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 · 201Success — the request returned data or created a resource.
204Success with no body (e.g. a delete).
400Bad request — validation failed or the body is malformed.
401Missing or invalid bearer token.
403Authenticated, but not allowed to perform this action.
404The resource does not exist.
500Something 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.

Response
{
  "Status": 400,
  "Title": "Validation failed",
  "Detail": "Name is required."
}