v97

latestOpenAPI 3.1.0raw.githubusercontent.com2026-08-04231129815.9 KB
SMS

Send a test SMS

Sends a real test text message. Test sends charge credits, bypass quiet hours, are excluded from step stats, and are limited to 5 per company per hour. Requires the SMS add-on with a verified number.

post/sms/test

Request body

tostring required

Destination phone number in international E.164 format.

textstring

Plain-text message body. Provide text or blocks, not both.

imageUrlsstring[]

Up to 2 publicly reachable image URLs sent as MMS media (US/CA only).

blocksobject[]

SMS content blocks (text + image subset). Provide text or blocks, not both.

Example request

{
  "to": "+15550100123",
  "text": "Test from Sequenzy"
}

Response

Test SMS queued successfully

successboolean
smsSendIdstring
toPhonestring
messagestring

Example response

{
  "success": true,
  "smsSendId": "sms_abc123",
  "toPhone": "+15550100123",
  "message": "Test SMS queued to +15550100123. Test sends bypass quiet hours, charge credits, and are excluded from step stats."
}