Query parameters

  • deviceId string(uuid)

Responses

  • 200 application/json

    Messages for a device

    Hide response attribute Show response attribute object
    • data array[object]
      Hide data attributes Show data attributes object
      • id string
      • direction string

        Values are inbound or outbound.

      • to string
      • body string
      • status string
GET /messages
curl \
 --request GET 'https://api.pairfon.com/messages' \
 --header "Authorization: Bearer $ACCESS_TOKEN"
Response examples (200)
{
  "data": [
    {
      "id": "string",
      "direction": "inbound",
      "to": "string",
      "body": "string",
      "status": "string"
    }
  ]
}