GET
/
v5
/
notifications
/
channels
Retrieve all notification channels
curl --request GET \
  --url https://api.kadoa.com/v5/notifications/channels \
  --header 'x-api-key: <api-key>'
{
  "data": {
    "channels": [
      {
        "id": "<string>",
        "name": "<string>",
        "channelType": "<string>",
        "config": {},
        "createdAt": "<string>",
        "updatedAt": "<string>"
      }
    ]
  },
  "status": "<string>",
  "message": "<string>"
}

Authorizations

x-api-key
string
header
required

Query Parameters

workflowId
string

Workflow ID (optional, if provided returns channels linked to this workflow)

Response

200
application/json

Channels retrieved successfully

The response is of type object.