runsList = client.extraction_pipelines.runs.list(external_id="test ext id", limit=5)
runs_list = client.extraction_pipelines.runs.list(external_id="test ext id", statuses=["seen"], limit=5)
from cognite.client.data_classes import ExtractionPipelineRun
res = client.extraction_pipelines.runs.list(external_id="extId", statuses="failure", created_time="24h-ago"){
"items": [
{
"status": "<string>",
"id": 4503599627370496,
"message": "<string>",
"createdTime": 1730204346000
}
],
"nextCursor": "<string>"
}Required capabilities:
extractionrunsAcl:READ
Use advanced filtering options to find extraction pipeline runs. Sorted by createdTime value with descendant order.
runsList = client.extraction_pipelines.runs.list(external_id="test ext id", limit=5)
runs_list = client.extraction_pipelines.runs.list(external_id="test ext id", statuses=["seen"], limit=5)
from cognite.client.data_classes import ExtractionPipelineRun
res = client.extraction_pipelines.runs.list(external_id="extId", statuses="failure", created_time="24h-ago"){
"items": [
{
"status": "<string>",
"id": 4503599627370496,
"message": "<string>",
"createdTime": 1730204346000
}
],
"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.
Was this page helpful?