Send SMS

POST

Dispatches a single SMS message to a destination number.

Endpoint

https://sms-api.paulinasource.com/v1/sms/send

Parameters

FieldTypeDescription
tostringThe destination phone number (E.164 format preferred).
messagestringThe text content of the SMS.
projectIdstringThe ID of the project to send from.
referenceId OptionalstringInternal ID returned in webhooks to match deliveries to your DB.

Example

cURL
curl -X POST https://sms-api.paulinasource.com/v1/sms/send \
-H "Authorization: Bearer sk_live_..." \
-H "Content-Type: application/json" \
-d '{
"to": "+2588412...",
"message": "Hello World",
"projectId": "proj_123",
"referenceId": "fatura_XPTO"
}'