Skip to main content
POST
/
api
/
sms
/
providers
/
config
Save SMS provider configuration
curl --request POST \
  --url https://your-instance.example.com/api/sms/providers/config \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "provider": "<string>",
  "twilioAccountSid": "<string>",
  "twilioAuthToken": "<string>",
  "twilioMessagingServiceSid": "<string>",
  "sinchServicePlanId": "<string>",
  "sinchApiToken": "<string>",
  "sinchMmsApiKey": "<string>",
  "sinchMmsServiceId": "<string>"
}
'
{}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Body

application/json
provider
string
required
twilioAccountSid
string
twilioAuthToken
string
twilioMessagingServiceSid
string
sinchServicePlanId
string
sinchApiToken
string
sinchMmsApiKey
string
sinchMmsServiceId
string

Response

Configuration saved

Generic response envelope. Endpoint-specific fields are intentionally open.