Channel
Authorization
Add this header to every request in this page
json
{
"Authorization": "Bearer ${token}"
}🔒 List Channels
For Channels Listing
GET
https://backend.helorobo.com/agent-app/message-template/channels
Response
json
{
"success": true,
"items": [
{
"id": "<channel_id>",
"name": "<channel_name>",
"number": "<phone_number>",
"whatsapp_account_id": "<waba>",
"phone_number_id": "<phone_number_id>",
"is_active": true,
"created_at": "2024-04-01T08:38:02.269Z",
"updated_at": "2024-05-02T14:19:55.452Z",
"container": {
"domain": "<domain>",
"number": "<phone_number>"
}
}
]
}Parameter Explanations
| Name | Description |
|---|---|
| id | This is Channel Id which you are going to use while creating, getting and sending message templates |
| name | Name of the Channel. Example HeloRobo Test Channel |
| number | Number of the Channel which messages will be sending from |
| is_active | Status of the Channel. If it is false you cannot send messages |
