Skip to content

Sms Outbox

GET
/admin/sms/outbox
curl --request GET \
--url https://example.com/admin/sms/outbox \
--header 'Authorization: Bearer <token>'

Codes “sent” by the log backend, newest first. 404 on a real SMS backend (SNS): there is nothing to read back, by design.

Successful Response

Media typeapplication/json
Response Sms Outbox Admin Sms Outbox Get
Array<object>
SmsOutboxEntry
object
code
required
Code
string
sent_at
required
Sent At
string format: date-time
to
required
To
string
Examplegenerated
[
{
"code": "example",
"sent_at": "2026-04-15T12:00:00Z",
"to": "example"
}
]