Skip to main content
GET
/
api
/
sms
/
providers
Get active SMS provider for the organization
curl --request GET \
  --url https://your-instance.example.com/api/sms/providers \
  --header 'Authorization: Bearer <token>'
{
  "provider": "twilio"
}

Authorizations

Authorization
string
header
required

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

Query Parameters

organizationId
string

SUPERADMIN-only override. Other roles are pinned to the org on their JWT and this parameter is ignored.

Response

Active SMS provider (or null if none is configured)

Response from GET /api/sms/providers.

provider
enum<string>
required

Active SMS provider for the organization. null when no provider is configured or selected.

Available options:
twilio,
sinch,
textgrid
Example:

"twilio"