Send quick message with default template (rate limited to 5 per day)

Sends a message to a phone number using the default template. This endpoint is rate limited to 5 messages per customer per day. The customer ID is extracted from the authentication token.

POST
/v2/messages/quick-message

Header Parameters

x-sender-id*string
Formatguid
x-api-key*string

Request Body

application/json

phoneNumber*string

The phone number to send the message to, in international format (e.g., +1234567890)

Length1 <= length
customMessage*string

The custom message content to include in the template

Length1 <= length
[key: string]?never

Response Body

curl -X POST "https://api.sent.dm/v2/messages/quick-message" \  -H "x-sender-id: 00000000-0000-0000-0000-000000000000" \  -H "x-api-key: " \  -H "Content-Type: application/json" \  -d '{    "phoneNumber": "+1234567890",    "customMessage": "Hello, this is a test message!"  }'
Empty
Empty
Empty