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": {
          "recipients": [
            "user@example.com",
            "admin@company.com"
          ],
          "from": "notifications@kadoa.com"
        },
        "createdAt": "<string>",
        "updatedAt": "<string>"
      }
    ]
  },
  "status": "<string>",
  "message": "<string>"
}

Authorizations

x-api-key
string
header
required

API key for authentication

Query Parameters

workflowId
string

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

Response

Channels retrieved successfully

The response is of type object.