Get a channel
/channels/{channel}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
dataoptionalChannel
dataoptionalChannelidoptionalstringChannel id (ch_...).
typeoptionalstring"blooio""twilio""whatsapp""whatsapp_business""rcs_business"addressoptionalstring | nullThe channel's real address: the phone number for numbered channels, or the provider address for non-numbered ones. Usable directly as from.
aliasoptionalstringMovable, organization-wide name for a non-numbered channel (currently RCS Business). Usable directly as from. Omitted for numbered channels.
statusoptionalstring"pending_verification""active""suspended""banned""deprecated"capabilitiesoptionalChannelCapabilitiesWhat a channel can do. Shape varies by channel type.
capabilitiesoptionalChannelCapabilitiesWhat a channel can do. Shape varies by channel type.
protocolsoptionalstring[]contentoptionalstring[]actionsoptionalstring[]interactiveoptionalstring[]gatesoptionalstring[]created_atoptionalintegerEpoch milliseconds.
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 \{ "data": { "id": "ch_a1b2c3d4", "type": "blooio", "address": "123 Main St", "alias": "string", "status": "pending_verification", "capabilities": { "protocols": [ "string" ], "content": [ "Hello from Blooio!" ], "actions": [ "string" ], "interactive": [ "string" ], "gates": [ "string" ] }, "created_at": 0 }}