Skip to main content
POST
/
extpipes
/
config
Create extraction configuration revision
curl --request POST \
  --url https://{cluster}.cognitedata.com/api/v1/projects/{project}/extpipes/config \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "externalId": "<string>",
  "config": "<string>",
  "description": "<string>"
}
'
{
  "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.

Body

application/json
externalId
string
required

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

Required string length: 1 - 255
config
string

Configuration content.

description
string | null

A description of this configuration revision.

Response

Response with the created 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