Download OpenAPI specification:
Public API for sending SMS messages through the VoxiSMS platform. Messages are enqueued and delivered by the VoxiSMS Android app via the device's native SMS capability.
Enqueues an SMS message for delivery. Authentication uses a shared x-api-key header plus per-customer customerId and secretKey in the request body.
| customerId required | string Your VoxiSMS Customer ID. |
| secretKey required | string Your VoxiSMS Secret Key. |
| recipient required | string Destination phone number in E.164 format. |
| message required | string The SMS message content. |
| id | string Optional client-supplied message ID. A UUID is generated automatically if omitted. |
| webhookUrl | string <uri> Optional URL to receive delivery/status event callbacks. |
| source | string Originating integration identifier. |
{- "customerId": "string",
- "secretKey": "string",
- "recipient": "+15551234567",
- "message": "string",
- "id": "string",
- "source": "zapier"
}{- "code": 200,
- "message": "string",
- "data": {
- "sqsResponse": {
- "MessageId": "sample-message-id-12345"
}
}
}