HubSpot · Schema

CallUpdateRequest

Request body for updating a call

AnalyticsCommerceContentCRMCustomer ServiceEmail MarketingMarketingMarketing AutomationOperationsSales

Properties

Name Type Description
properties object The call properties to update
View JSON Schema on GitHub

JSON Schema

engagement-calls-api-call-update-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/engagement-calls-api-call-update-request-schema.json",
  "title": "CallUpdateRequest",
  "description": "Request body for updating a call",
  "type": "object",
  "properties": {
    "properties": {
      "type": "object",
      "description": "The call properties to update",
      "additionalProperties": {
        "type": "string"
      },
      "example": {
        "hs_call_title": "Updated Discovery Call",
        "hs_call_disposition": "connected"
      }
    }
  },
  "required": [
    "properties"
  ]
}