curl --request POST \
--url https://{cluster}.cognitedata.com/api/v1/projects/{project}/processes/signals/list \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"sink": {
"type": "email",
"externalId": "my.known.id"
},
"topic": "cognite_workflows",
"cursor": "<string>",
"limit": 100
}
'{
"items": [
{
"topic": "cognite_integrations",
"sink": {
"type": "email",
"externalId": "my.known.id"
},
"externalId": "my.known.id",
"severity": "info",
"resourceId": "<string>",
"category": "<string>",
"metadata": {
"extractorExternalId": "<string>",
"extractorVersion": "<string>"
},
"message": "<string>",
"details": "<string>"
}
],
"nextCursor": "<string>"
}Required capabilities:
subscribeSignalsAcl:READ
List all signals for a sink.
curl --request POST \
--url https://{cluster}.cognitedata.com/api/v1/projects/{project}/processes/signals/list \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"sink": {
"type": "email",
"externalId": "my.known.id"
},
"topic": "cognite_workflows",
"cursor": "<string>",
"limit": 100
}
'{
"items": [
{
"topic": "cognite_integrations",
"sink": {
"type": "email",
"externalId": "my.known.id"
},
"externalId": "my.known.id",
"severity": "info",
"resourceId": "<string>",
"category": "<string>",
"metadata": {
"extractorExternalId": "<string>",
"extractorVersion": "<string>"
},
"message": "<string>",
"details": "<string>"
}
],
"nextCursor": "<string>"
}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.
Filter for signals to list.
Filter for signals to list.
Reference to a sink. If the type is "user", the user must exist in the user profiles API.
Show child attributes
Topic name
cognite_workflows, cognite_integrations, cognite_hosted_extractors Cursor for pagination. This cursor is temporary hence should not be saved.
Maximum number of subscriptions to return.
1 <= x <= 100Was this page helpful?