HubSpot · Schema

ActionFunctionInput

Input for creating or updating a function

AnalyticsCommerceContentCRMCustomer ServiceEmail MarketingMarketingMarketing AutomationOperationsSales

Properties

Name Type Description
functionSource string The JavaScript source code of the function
View JSON Schema on GitHub

JSON Schema

hubspot-custom-workflow-actions-action-function-input-schema.json Raw ↑
{
  "type": "object",
  "description": "Input for creating or updating a function",
  "properties": {
    "functionSource": {
      "type": "string",
      "description": "The JavaScript source code of the function",
      "example": "example-value"
    }
  },
  "required": [
    "functionSource"
  ],
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "ActionFunctionInput"
}