HubSpot · JSON Structure

Conversations Api Update Thread Request Structure

Request payload for updating a thread's properties.

Type: object Properties: 2
AnalyticsCommerceContentCRMCustomer ServiceEmail MarketingMarketingMarketing AutomationOperationsSales

UpdateThreadRequest is a JSON Structure definition published by HubSpot, describing 2 properties. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

status assignedTo

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/hubspot/refs/heads/main/json-structure/conversations-api-update-thread-request-structure.json",
  "name": "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"
    }
  }
}