Skip to main content

ApiProblemDetails

Error body returned by the API. It follows RFC 7807 application/problem+json: type, title, status, detail and instance carry the standard fields, and code adds a stable machine-readable identifier of the specific error condition. Match on code rather than on title or detail, which are meant for humans and may be reworded.

typestringnullable

URI reference identifying the problem type, as defined by RFC 7807. Branch on code instead.

titlestringnullable

Short human-readable summary of the problem type. Written for humans and may be reworded, so do not match on it.

statusinteger<int32>nullable

HTTP status code of the response, repeated in the body.

detailstringnullable

Human-readable explanation of what went wrong in this specific case.

instancestringnullable

URI reference identifying this specific occurrence of the problem.

codestringnullable

Stable machine-readable discriminator for the specific error condition. Omitted from the body when absent.

property name*any

Error body returned by the API. It follows RFC 7807 application/problem+json: type, title, status, detail and instance carry the standard fields, and code adds a stable machine-readable identifier of the specific error condition. Match on code rather than on title or detail, which are meant for humans and may be reworded.

ApiProblemDetails
{
"type": "string",
"title": "string",
"status": 0,
"detail": "string",
"instance": "string",
"code": "string"
}