Wrike · Schema

Error

Work ManagementProject ManagementCollaborationProductivityWorkflow AutomationTask Management

Properties

Name Type Description
error string Error code
errorDescription string Human-readable error description
View JSON Schema on GitHub

JSON Schema

wrike-error-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/Error",
  "title": "Error",
  "type": "object",
  "required": [
    "error",
    "errorDescription"
  ],
  "properties": {
    "error": {
      "type": "string",
      "description": "Error code",
      "example": "not_authorized"
    },
    "errorDescription": {
      "type": "string",
      "description": "Human-readable error description",
      "example": "The access token is invalid"
    }
  }
}