Get channel settings
/channels/{channel}/settingsPer-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
channelRequiredstringThe 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
AuthorizationRequiredstringYour API key, sent as a bearer token: Authorization: Bearer <api_key>. Editing this stays in sync with the API key box on the right.
Returns
dataoptionalChannelSettingsPer-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).
dataoptionalChannelSettingsPer-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_idoptionalstringChannel id (ch_...).
typeoptionalstring"blooio""twilio""whatsapp""whatsapp_business""rcs_business"settingsoptionalobjectCurrent setting values for this channel (keys are per channel type).
availableoptionalobjectWhether this channel may turn each setting on (type-gated).
Response codes
Sends a live request with your values and shows the real response below. Your key is stored only in this browser.
curl -X GET https://api.blooio.com/v4/channels/string/settings \{ "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 } }}