Skip to main content
GET
/
messages
/
{id}
Get Message
curl --request GET \
  --url https://api.revring.ai/v1/messages/{id} \
  --header 'x-api-key: <api-key>'
{
  "data": {
    "id": "<string>",
    "agentId": "<string>",
    "messagingConnectionId": "<string>",
    "callId": "<string>",
    "conversationId": "<string>",
    "channel": "sms",
    "fromNumber": "<string>",
    "toNumber": "<string>",
    "body": "<string>",
    "status": "<string>",
    "providerMessageId": "<string>",
    "generatedByLlm": true,
    "errorMessage": "<string>",
    "createdAt": "2023-11-07T05:31:56Z"
  }
}

Authorizations

x-api-key
string
header
required

API key for authentication. Generate API keys from the RevRing dashboard.

Path Parameters

id
string
required

Message ID

Response

The message

data
object

A logged text message (sent or received).