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>"
}Required capabilities:
subscribeSignalsAcl:READ
Retrieve subscriptions matching a filter.
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>"
}Documentation Index
Fetch the complete documentation index at: https://docs.cognite.com/llms.txt
Use this file to discover all available pages before exploring further.
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.
Subscription filter request.
Request for filtering subscriptions.
Was this page helpful?