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

hubspot-conversations-update-thread-request-schema.json Raw ↑
{
  "type": "object",
  "description": "Request payload for updating a thread's properties.",
  "properties": {
    "status": {
      "type": "string",
      "description": "New thread status",
      "example": "CLOSED",
      "enum": [
        "OPEN",
        "CLOSED"
      ]
    },
    "assignedTo": {
      "type": "string",
      "description": "User ID to assign the thread to",
      "example": "user_789"
    }
  },
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "UpdateThreadRequest"
}