HubSpot · JSON Structure

Custom Workflow Actions Api Batch Callback Error Structure

Error information for a failed callback

Type: object Properties: 3 Required: 3
AnalyticsCommerceContentCRMCustomer ServiceEmail MarketingMarketingMarketing AutomationOperationsSales

BatchCallbackError is a JSON Structure definition published by HubSpot, describing 3 properties, of which 3 are required. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

callbackId message category

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/hubspot/refs/heads/main/json-structure/custom-workflow-actions-api-batch-callback-error-structure.json",
  "name": "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"
  ]
}