Skip to main content

Error Objects

The API will return an Error List for a failed request, which will contain one or more Error objects.

Error List Attributes

Each error has the following attributes:
FieldDescription
statusThe HTTP status
codeGeneral context about the error. See Error Codes
titleError title
detailError detail
metaMetadata about the error

Error List Object

[
  {
    "status": "404",
    "code": "not_found",
    "title": "Error",
    "detail": "Specified Record Not Found"
  }
]
I