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>"
}Required capabilities:
transformationsAcl:READ
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>"
}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.
List only jobs for the specified transformation. The transformation is identified by ID.
List only jobs for the specified transformation. The transformation is identified by external ID.
Limits the number of results to be returned. The maximum is 1000, default limit is 100.
1 <= x <= 1000Cursor for paging through results.
Was this page helpful?