Skip to main content
POST
/
processes
/
signals
/
subscriptions
/
list
Filter subscriptions
curl --request POST \
  --url https://{cluster}.cognitedata.com/api/v1/projects/{project}/processes/signals/subscriptions/list \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "filter": {
    "topic": "cognite_integrations",
    "resource": "<string>",
    "category": "<string>",
    "severity": "info",
    "sink": {
      "type": "email",
      "externalId": "my.known.id"
    },
    "metadata": {
      "extractorExternalId": "<string>",
      "extractorVersion": "<string>"
    }
  },
  "limit": 100,
  "cursor": "<string>"
}
'
{
  "items": [
    {
      "externalId": "my.known.id",
      "sink": {
        "type": "email",
        "externalId": "my.known.id"
      },
      "filter": {
        "topic": "cognite_integrations",
        "resource": "<string>",
        "category": [
          "<string>"
        ],
        "severity": "info",
        "extractorExternalId": "<string>",
        "extractorVersion": "<string>"
      },
      "createdTime": 1730204346000,
      "lastUpdatedTime": 1730204346000
    }
  ],
  "nextCursor": "<string>"
}

Authorizations

Authorization
string
header
required

Access token issued by the CDF project's configured identity provider. Access token must be an OpenID Connect token, and the project must be configured to accept OpenID Connect tokens. Use a header key of 'Authorization' with a value of 'Bearer $accesstoken'. The token can be obtained through any flow supported by the identity provider.

Body

application/json

Subscription filter request.

Request for filtering subscriptions.

filter
FilterIntegrationsSubscriptions · object
limit
integer
default:100

Maximum number of subscriptions to return.

Required range: 1 <= x <= 100
cursor
string

Cursor for pagination.

Response

List of subscriptions and an optional cursor.

items
SubscriptionRead · object[]
required
Maximum array length: 100
nextCursor
string

Cursor for retrieving the next page of results. Omitted if there are no more results.

Last modified on April 23, 2026