Provenance
PublisherCognite CDF
API basehttps://api.cognitedata.com/
Freshness & coverage
FreshnessFreshness not declared
GeographicNot declared
TemporalNot declared
AuthenticationCredentials required (Bearer token)
Methods (5)
inspectToken
readInspect the active Cognite token to verify auth context and capabilities.
Input schema
{ "type": "object", "properties": {}, "additionalProperties": false }listAssets
readList CDF assets (default endpoint: GET /assets).
Input schema
{ "type": "object", "properties": { "endpoint": { "type": "string" }, "limit": { "type": "number" }, "cursor": { "type": "string" }, "query": { "type": "object", "properties": {}, "additionalProperties": true } }, "additionalProperties": false }listEvents
readList CDF events (default endpoint: GET /events).
Input schema
{ "type": "object", "properties": { "endpoint": { "type": "string" }, "limit": { "type": "number" }, "cursor": { "type": "string" }, "query": { "type": "object", "properties": {}, "additionalProperties": true } }, "additionalProperties": false }listTimeSeries
readList CDF time series metadata (default endpoint: GET /timeseries).
Input schema
{ "type": "object", "properties": { "endpoint": { "type": "string" }, "limit": { "type": "number" }, "cursor": { "type": "string" }, "query": { "type": "object", "properties": {}, "additionalProperties": true } }, "additionalProperties": false }queryCdf
readGeneric Cognite request helper for any CDF REST endpoint.
Required paramsendpointInput schema
{ "type": "object", "properties": { "endpoint": { "type": "string" }, "method": { "oneOf": [ { "type": "string", "enum": [ "POST" ] }, { "type": "string", "enum": [ "DELETE" ] }, { "type": "string", "enum": [ "PATCH" ] }, { "type": "string", "enum": [ "GET" ] }, { "type": "string", "enum": [ "PUT" ] } ] }, "query": { "type": "object", "properties": {}, "additionalProperties": true }, "body": {}, "expectBinary": { "type": "boolean" } }, "additionalProperties": false, "required": [ "endpoint" ] }
