Skip to main content

GET /channels/:uuid

Get a specific channel given a uuid.

Required Parameters

ParameterTypeDescription
uuidstringThe uuid of the channel

Example Request

curl -X GET "https://api.callbell.eu/v1/channels/7c996996fea947f4a1d5a11e7fac84db" \
-H "Authorization: Bearer test_gshuPaZoeEG6ovbc8M79w0QyM" \
-H "Content-Type: application/json"

Response

ParameterTypeDescription
channelChannelThe object representing the channel.

Example Response

response.json
{
"channel": {
"uuid": "7c996996fea947f4a1d5a11e7fac84db",
"title": "phone_number_1",
"type": "whatsapp",
"main": true
}
}