Skip to main content
GET
/
v1
/
risk
/
channels
List alert channels for the caller workspace
curl --request GET \
  --url https://api.range.org/v1/risk/channels \
  --header 'Authorization: Bearer <token>'
{
  "items": [
    {
      "id": "a1b2c3d4-e5f6-7890-abcd-ef1234567890",
      "workspace_id": "workspace-123",
      "name": "My Slack Channel",
      "type": "slack",
      "enabled": true,
      "connected": true,
      "created_at": "2026-05-14T12:00:00.000Z",
      "params": {
        "unique_code": "abc123"
      }
    }
  ]
}

Authorizations

Authorization
string
header
required

Use Authorization: Bearer

Response

200 - application/json
items
object[]
required
Last modified on July 1, 2026