Skip to main content
DELETE
/
api
/
sms
/
providers
/
config
/
{provider}
Remove SMS provider configuration
curl --request DELETE \
  --url https://your-instance.example.com/api/sms/providers/config/{provider} \
  --header 'Authorization: Bearer <token>'
{
  "success": true,
  "message": "twilio SMS configuration saved"
}

Authorizations

Authorization
string
header
required

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

Path Parameters

provider
enum<string>
required

Provider whose configuration should be removed.

Available options:
twilio,
sinch,
textgrid

Response

Configuration removed

Shared response for save / set-active / delete operations.

success
enum<boolean>
required
Available options:
true
message
string

Human-readable confirmation (e.g. "twilio SMS configuration saved").