HubSpot · JSON Structure

Hubspot Custom Workflow Actions Batch Callback Completion Request Structure

Request body for completing multiple callbacks

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

BatchCallbackCompletionRequest is a JSON Structure definition published by HubSpot, describing 1 property, of which 1 is required. It conforms to the https://json-structure.org/draft/2020-12/schema meta-schema.

Properties

inputs

Meta-schema: https://json-structure.org/draft/2020-12/schema

JSON Structure

Raw ↑
{
  "type": "object",
  "description": "Request body for completing multiple callbacks",
  "name": "BatchCallbackCompletionRequest",
  "properties": {
    "inputs": {
      "type": "array",
      "description": "List of callbacks to complete",
      "items": {
        "type": "object",
        "description": "A single callback completion input",
        "properties": {
          "callbackId": {
            "type": "string",
            "description": "The unique identifier of the callback"
          },
          "outputFields": {
            "type": "object",
            "description": "The output values to return"
          }
        },
        "required": [
          "callbackId",
          "outputFields"
        ]
      }
    }
  },
  "required": [
    "inputs"
  ],
  "$schema": "https://json-structure.org/draft/2020-12/schema"
}