ErrorResponse

Business ManagementDynamics NAVERPFinanceInventoryMicrosoftNavision

Properties

Name Type Description
code string A stable error code describing the type and nature of the error
message string A readable description of the error and cause
target string Information about what part of the request caused the error
extensionData object Additional key/value information about the error
clientError array Nested list of error objects with more details
View JSON Schema on GitHub

JSON Schema

admin-center-error-response-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "ErrorResponse",
  "type": "object",
  "properties": {
    "code": {
      "type": "string",
      "description": "A stable error code describing the type and nature of the error"
    },
    "message": {
      "type": "string",
      "description": "A readable description of the error and cause"
    },
    "target": {
      "type": "string",
      "description": "Information about what part of the request caused the error"
    },
    "extensionData": {
      "type": "object",
      "description": "Additional key/value information about the error"
    },
    "clientError": {
      "type": "array",
      "description": "Nested list of error objects with more details"
    }
  }
}