Sends custom SMS messages to a specific client
Request
Provide your bearer token in the Authorization
header when making requests to protected resources. Example:Authorization: Bearer ********************
Body Params application/json
{
"from": "string",
"to": [
"string"
],
"message": "string",
"sms_sender_config_id": 0
}
Request Code Samples
curl --location 'https://api.ffdemo.ufp.ai/tenants//clients//send_free_form_sms' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"from": "string",
"to": [
"string"
],
"message": "string",
"sms_sender_config_id": 0
}'
Modified at 2025-03-21 07:23:14