Send SMS
POST
Dispatches a single SMS message to a destination number.
Endpoint
https://sms-api.paulinasource.com/v1/sms/send
Parameters
| Field | Type | Description |
|---|---|---|
| to | string | The destination phone number (E.164 format preferred). |
| message | string | The text content of the SMS. |
| projectId | string | The ID of the project to send from. |
| referenceId Optional | string | Internal 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"
}'