HubSpot · JSON Structure

Custom Workflow Actions Api Batch Callback Input Structure

A single callback completion input

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

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

Properties

callbackId outputFields

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-input-structure.json",
  "name": "BatchCallbackInput",
  "description": "A single callback completion input",
  "type": "object",
  "properties": {
    "callbackId": {
      "type": "string",
      "description": "The unique identifier of the callback",
      "example": "500123"
    },
    "outputFields": {
      "type": "object",
      "description": "The output values to return",
      "additionalProperties": {
        "type": "string"
      },
      "example": {
        "key": "value"
      }
    }
  },
  "required": [
    "callbackId",
    "outputFields"
  ]
}