HubSpot · Schema

MessageStatus

Delivery status information for a message

AnalyticsCommerceContentCRMCustomer ServiceEmail MarketingMarketingMarketing AutomationOperationsSales

Properties

Name Type Description
statusType string Current delivery status type
View JSON Schema on GitHub

JSON Schema

conversations-api-message-status-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-message-status-schema.json",
  "title": "MessageStatus",
  "description": "Delivery status information for a message",
  "type": "object",
  "properties": {
    "statusType": {
      "type": "string",
      "enum": [
        "SENT",
        "DELIVERED",
        "READ",
        "FAILED"
      ],
      "description": "Current delivery status type",
      "example": "DELIVERED"
    }
  }
}