Skip to main content
GET
/
transformations
/
jobs
Python SDK
transformation_jobs_list = client.transformations.jobs.list()

transformation_jobs_list = client.transformations.jobs.list(transformation_id=1)
{
  "items": [
    {
      "id": 123,
      "uuid": "<string>",
      "transformationId": 123,
      "transformationExternalId": "<string>",
      "sourceProject": "<string>",
      "destinationProject": "<string>",
      "destination": {
        "type": "assets"
      },
      "conflictMode": "abort",
      "query": "<string>",
      "createdTime": 123,
      "ignoreNullFields": true,
      "status": "Completed",
      "startedTime": 123,
      "finishedTime": 123,
      "lastSeenTime": 123,
      "error": "<string>"
    }
  ],
  "nextCursor": "<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

transformationId
integer<int32>

List only jobs for the specified transformation. The transformation is identified by ID.

transformationExternalId
string

List only jobs for the specified transformation. The transformation is identified by external ID.

limit
integer<int32>

Limits the number of results to be returned. The maximum is 1000, default limit is 100.

Required range: 1 <= x <= 1000
cursor
string

Cursor for paging through results.

Response

Response with list of jobs.

items
object[]
nextCursor
string

Cursor to get the next page of results (if available).

Last modified on April 23, 2026