schedules_list = client.transformations.schedules.list(){
"items": [
{
"id": 123,
"externalId": "<string>",
"createdTime": 123,
"lastUpdatedTime": 123,
"interval": "0 0 * * *",
"isPaused": true
}
],
"nextCursor": "<string>"
}Required capabilities:
transformationsAcl:READ
List all transformation schedules. Use nextCursor to paginate through the results.
schedules_list = client.transformations.schedules.list(){
"items": [
{
"id": 123,
"externalId": "<string>",
"createdTime": 123,
"lastUpdatedTime": 123,
"interval": "0 0 * * *",
"isPaused": true
}
],
"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.
Limits the number of results to be returned. The maximum is 1000, default limit is 100.
1 <= x <= 1000Cursor for paging through results.
Whether public transformations should be included in the results. The default is true.
Was this page helpful?