HubSpot · Schema

ActionFunctionCollection

A collection of action functions

AnalyticsCommerceContentCRMCustomer ServiceEmail MarketingMarketingMarketing AutomationOperationsSales

Properties

Name Type Description
results array List of action functions
View JSON Schema on GitHub

JSON Schema

hubspot-custom-workflow-actions-action-function-collection-schema.json Raw ↑
{
  "type": "object",
  "description": "A collection of action functions",
  "properties": {
    "results": {
      "type": "array",
      "description": "List of action functions",
      "example": [
        {
          "id": "500123",
          "functionType": "PRE_ACTION_EXECUTION",
          "functionSource": "example-value"
        }
      ],
      "items": {
        "type": "object",
        "description": "A serverless function associated with an action",
        "properties": {
          "id": {
            "type": "string",
            "description": "The unique identifier of the function",
            "example": "500123"
          },
          "functionType": {
            "type": "string",
            "description": "The type of function",
            "example": "PRE_ACTION_EXECUTION",
            "enum": [
              "PRE_ACTION_EXECUTION",
              "PRE_FETCH_OPTIONS",
              "POST_FETCH_OPTIONS",
              "POST_ACTION_EXECUTION"
            ]
          },
          "functionSource": {
            "type": "string",
            "description": "The JavaScript source code of the function",
            "example": "example-value"
          }
        },
        "required": [
          "id",
          "functionType",
          "functionSource"
        ]
      }
    }
  },
  "required": [
    "results"
  ],
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "ActionFunctionCollection"
}