Path parameters

  • threadId string Required

Responses

  • 200 application/json

    Thread with messages

    Hide response attributes Show response attributes object
    • threadId string
    • messages array[object]
      Hide messages attributes Show messages attributes object
      • direction string
      • body string
      • timestamp string(date-time)
GET /messages/{threadId}
curl \
 --request GET 'https://api.pairfon.com/messages/{threadId}' \
 --header "Authorization: Bearer $ACCESS_TOKEN"
Response examples (200)
{
  "threadId": "string",
  "messages": [
    {
      "direction": "string",
      "body": "string",
      "timestamp": "2025-05-04T09:42:00Z"
    }
  ]
}