Identity PlatformAPI Reference

Errors

How the Identity Platform API reports errors, and a reference for every error type.

All errors from the Identity Platform API follow RFC 7807 Problem Details for HTTP APIs. Every error response has Content-Type: application/problem+json and a consistent JSON body.

Response shape

{
  "type": "https://brivo.ltd/docs/identity/api/errors/bad-request",
  "title": "Bad Request",
  "status": 400,
  "detail": "A human-readable explanation of what went wrong.",
  "instance": "/auth/session",
  "requestId": "req_01j3k..."
}
FieldTypeDescription
typestringURI that identifies the error type. Links to this documentation.
titlestringShort summary of the error. Stable for a given type.
statusnumberHTTP status code.
detailstringOptional. Specific detail for this occurrence. May change between requests.
instancestringOptional. The URI of the request that produced the error.
requestIdstringOptional. Unique ID for the request, useful when contacting support.

Error types

On this page