Channel

List channels

List notification channels by NRN.

get/notification/channel

Query parameters

nrnstring required

The NRN of the resource (including children resources) where the action will apply, such as organization, account, namespace, application, and scope.

type'slack' | 'http' | 'github' | 'gitlab' | 'azure' | 'agent'

The type of notification channel.

Response

The operation was successful.

Example response

{
  "results": [
    {
      "id": 789,
      "nrn": "organization=1:account=2:namespace=3:application=4",
      "description": "My channel for approval notifications",
      "source": [
        "approval"
      ],
      "type": "slack",
      "configuration": {
        "channels": [
          "my-organization-private-channel"
        ]
      },
      "filters": {
        "action": "deployment:create"
      }
    }
  ]
}

Changes