GET
https://api.wazapin.id
/
v1
/
channels
List channels
curl --request GET \
  --url https://api.wazapin.id/v1/channels \
  --header 'X-Api-Key: <api-key>'

Endpoint

GET /v1/channels Returns available channels for your organization.

Authentication

Use X-Api-Key header.
curl -X GET "https://api.wazapin.id/v1/channels" \
  -H "X-Api-Key: YOUR_API_KEY" \
  -H "Accept: application/json"
200 OK
{
  "data": [
    {
      "id": "wzp_wu8f3k2p",
      "name": "Main channel",
      "status": "connected"
    }
  ]
}