Skip to main content
GET
/
api
/
v1
/
conversations
/
{id}
Get a specific conversation by ID
curl --request GET \
  --url https://api.g-tateth.com/api/v1/conversations/{id} \
  --header 'Authorization: <api-key>'
{
  "success": true,
  "data": {
    "_id": "<string>",
    "subject": "<string>",
    "status": "open",
    "priority": "medium",
    "channel": "email",
    "customerId": "64a1b2c3d4e5f6789012345b",
    "assignedTo": "64a1b2c3d4e5f6789012345c",
    "inboxId": "64a1b2c3d4e5f6789012345d",
    "labels": [
      "billing",
      "urgent"
    ],
    "createdAt": "2023-11-07T05:31:56Z",
    "updatedAt": "2023-11-07T05:31:56Z"
  }
}

Authorizations

Authorization
string
header
required

API Key authentication. Format: Bearer sk_live_... (production) or Bearer sk_test_... (staging). Obtain keys from Settings → Developer Console.

Path Parameters

id
string
required

Conversation ID

Response

200 - application/json

Conversation details

success
boolean
data
object