BetaThe V4 API is in beta — endpoints and functionality may change.
Channelsv4

Get channel settings

GET/channels/{channel}/settings

Per-channel settings for channel types that support them. settings and available are per channel type; the Blooio (P2P numbers) provider exposes auto_mark_read and auto_share_contact. available[key] says whether THIS channel may turn key on (type-gated). A channel whose type has no settings yet returns 403 settings_unsupported_for_channel_type.

Path parameters

channelRequiredstring

The channel reference — the same three forms from accepts: a phone number (URL-encode + as %2B), a channel alias, or the exact channel id (ch_...).

Headers

AuthorizationRequiredstring

Your API key, sent as a bearer token: Authorization: Bearer <api_key>. Editing this stays in sync with the API key box on the right.

Bearer

Returns

dataoptionalChannelSettings

Per-channel settings envelope. settings and available shapes vary by channel type; the Blooio (P2P numbers) provider exposes auto_mark_read and auto_share_contact. available[key] is whether THIS channel may turn key on (type-gated).

channel_idoptionalstring

Channel id (ch_...).

typeoptionalstring
"blooio""twilio""whatsapp""whatsapp_business""rcs_business"
settingsoptionalobject

Current setting values for this channel (keys are per channel type).

availableoptionalobject

Whether this channel may turn each setting on (type-gated).

Response codes

200Channel settings
401Your API key is missing or invalid. Pass it as a bearer token.
403Your API key isn't allowed to access this channel (blocked key or plan limit).
404No channel was found with the provided `channel`.

Sends a live request with your values and shows the real response below. Your key is stored only in this browser.

Request
curl -X GET https://api.blooio.com/v4/channels/string/settings \
Response objectexample
{  "data": {    "channel_id": "ch_a1b2c3d4",    "type": "blooio",    "settings": {      "auto_mark_read": false,      "auto_share_contact": false    },    "available": {      "auto_mark_read": true,      "auto_share_contact": true    }  }}