All data sources

Cognite CDF

Bearer tokencognite

Cognite Data Fusion (CDF) connector for industrial assets, events, and time series data.

Provenance

PublisherCognite CDF

Freshness & coverage

FreshnessFreshness not declared
GeographicNot declared
TemporalNot declared
AuthenticationCredentials required (Bearer token)

Methods (5)

  • inspectToken

    read

    Inspect the active Cognite token to verify auth context and capabilities.

    Input schema
    {
      "type": "object",
      "properties": {},
      "additionalProperties": false
    }
  • listAssets

    read

    List 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

    read

    List 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

    read

    List 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

    read

    Generic Cognite request helper for any CDF REST endpoint.

    Required paramsendpoint
    Input 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"
      ]
    }