HubSpot · Schema

UpdateThreadRequest

Request payload for updating a thread's properties.

AnalyticsCommerceContentCRMCustomer ServiceEmail MarketingMarketingMarketing AutomationOperationsSales

Properties

Name Type Description
status string New thread status
assignedTo string User ID to assign the thread to
View JSON Schema on GitHub

JSON Schema

conversations-api-update-thread-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/conversations-api-update-thread-request-schema.json",
  "title": "UpdateThreadRequest",
  "description": "Request payload for updating a thread's properties.",
  "type": "object",
  "properties": {
    "status": {
      "type": "string",
      "enum": [
        "OPEN",
        "CLOSED"
      ],
      "description": "New thread status",
      "example": "CLOSED"
    },
    "assignedTo": {
      "type": "string",
      "description": "User ID to assign the thread to",
      "example": "user_789"
    }
  }
}