Skip to main content
GET
/
v1
/
sms
/
settings
Get the org's SMS settings
curl --request GET \
  --url https://api-sandbox.featherhq.com/v1/sms/settings \
  --header 'x-api-key: <api-key>'
{
  "allowed_countries": [
    "<string>"
  ],
  "max_message_length": 123
}

Authorizations

x-api-key
string
header
required

Response

Successful Response

Combined per-org SMS config.

allowed_countries is the country allowlist (ISO-3166 alpha-2 codes; empty list = no restriction). max_message_length caps each assistant turn's character count; brain replies above this are split into multiple messages, API sends above this are rejected.

allowed_countries
string[]
required
max_message_length
integer
required