GET
/
sent_sms_messages
/
{id}
Retrieve a sent SMS message
curl --request GET \
  --url https://api.pocketflows.com/sent_sms_messages/{id} \
  --header 'Authorization: Basic <encoded-value>'
{
  "id": "<string>",
  "created_at": "<string>",
  "to_phone_number": "<string>",
  "message": "<string>",
  "sent_at": "<string>"
}

Authorizations

Authorization
string
header
required

Basic authentication header of the form Basic <encoded-value>, where <encoded-value> is the base64-encoded string username:password.

Path Parameters

id
string
required

The ID of the sent SMS message

Response

200 - application/json

A SentSmsMessage object

id
string
required

The ID of the sent SMS message

created_at
string
required

The time when the SMS was created in ISO 8601 format

to_phone_number
string
required

The phone number the SMS was sent to

message
string
required

The content of the SMS message

sent_at
string | null
required

The time when the SMS was sent in ISO 8601 format