HubSpot · Schema

CallbackCompletionRequest

Request body for completing a single callback

AnalyticsCommerceContentCRMCustomer ServiceEmail MarketingMarketingMarketing AutomationOperationsSales

Properties

Name Type Description
outputFields object The output values to return to the workflow
View JSON Schema on GitHub

JSON Schema

custom-workflow-actions-api-callback-completion-request-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-callback-completion-request-schema.json",
  "title": "CallbackCompletionRequest",
  "description": "Request body for completing a single callback",
  "type": "object",
  "properties": {
    "outputFields": {
      "type": "object",
      "description": "The output values to return to the workflow",
      "additionalProperties": {
        "type": "string"
      },
      "example": {
        "key": "value"
      }
    }
  },
  "required": [
    "outputFields"
  ]
}