Skip to main content
GET
/
extpipes
/
config
Get a single configuration revision
curl --request GET \
  --url https://{cluster}.cognitedata.com/api/v1/projects/{project}/extpipes/config \
  --header 'Authorization: Bearer <token>'
{
  "externalId": "<string>",
  "revision": 1073741823,
  "config": "<string>",
  "createdTime": 1730204346000,
  "description": "<string>"
}

Authorizations

Authorization
string
header
required

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.

Query Parameters

externalId
string
required
revision
integer<int32>
default:0
Required range: x >= 0
activeAtTime
integer<int64>
default:0
Required range: x >= 0

Response

Response with the retrieved configuration revision

externalId
string
required

External ID of the extraction pipeline this configuration revision belongs to.

Required string length: 1 - 255
revision
integer<int32>
required

Revision number of this configuration.

Required range: 0 <= x <= 2147483647
config
string

Configuration revision contents.

createdTime
integer<int64>

The number of milliseconds since 00:00:00 Thursday, 1 January 1970, Coordinated Universal Time (UTC), minus leap seconds.

Required range: x >= 0
Example:

1730204346000

description
string | null

A description of this config revision.

Last modified on April 23, 2026