Skip to main content
GET
/
api
/
v1
/
ai
/
support
/
chats
/
{conversationId}
Support chat detail
curl --request GET \
  --url https://mcp.echozero.app/api/v1/ai/support/chats/{conversationId} \
  --header 'x-api-key: <api-key>'
{
  "success": true,
  "data": {
    "conversationId": "<string>",
    "status": "<string>",
    "messageCount": 123,
    "createdAt": "2023-11-07T05:31:56Z",
    "updatedAt": "2023-11-07T05:31:56Z",
    "hasUnread": true,
    "messages": [
      {
        "role": "<string>",
        "content": "<string>",
        "createdAt": "2023-11-07T05:31:56Z"
      }
    ],
    "resolutionPendingUserConfirm": true,
    "ticketNumber": 123,
    "supportTopic": "<string>",
    "lastMessage": "<string>"
  }
}

Authorizations

x-api-key
string
header
required

Headers

x-signature
string

HMAC-SHA256 signature: HMAC-SHA256(secretKey, timestamp + METHOD + path + body). Optional -- when omitted, HMAC verification is skipped.

x-timestamp
string

Request timestamp in epoch milliseconds. Required when x-signature is provided. Rejected if drift exceeds 5 minutes.

Path Parameters

conversationId
string
required

Response

Support chat with messages.

success
boolean
required
Example:

true

data
object
required

Endpoint-specific payload