HubSpot · Schema

ObjectRequestOptions

Options for requesting CRM object data

AnalyticsCommerceContentCRMCustomer ServiceEmail MarketingMarketingMarketing AutomationOperationsSales

Properties

Name Type Description
properties array CRM properties to include in the action execution request
View JSON Schema on GitHub

JSON Schema

custom-workflow-actions-api-object-request-options-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-object-request-options-schema.json",
  "title": "ObjectRequestOptions",
  "description": "Options for requesting CRM object data",
  "type": "object",
  "properties": {
    "properties": {
      "type": "array",
      "description": "CRM properties to include in the action execution request",
      "items": {
        "type": "string"
      },
      "example": [
        "example-value"
      ]
    }
  }
}