HubSpot · Schema

BatchCallbackError

Error information for a failed callback

AnalyticsCommerceContentCRMCustomer ServiceEmail MarketingMarketingMarketing AutomationOperationsSales

Properties

Name Type Description
callbackId string The callback that failed
message string Error message
category string Error category
View JSON Schema on GitHub

JSON Schema

custom-workflow-actions-api-batch-callback-error-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/hubspot/refs/heads/main/json-schema/custom-workflow-actions-api-batch-callback-error-schema.json",
  "title": "BatchCallbackError",
  "description": "Error information for a failed callback",
  "type": "object",
  "properties": {
    "callbackId": {
      "type": "string",
      "description": "The callback that failed",
      "example": "500123"
    },
    "message": {
      "type": "string",
      "description": "Error message",
      "example": "This is an example description."
    },
    "category": {
      "type": "string",
      "description": "Error category",
      "example": "standard"
    }
  },
  "required": [
    "callbackId",
    "message",
    "category"
  ]
}