Skip to main content
GET
/
transformations
/
schedules
Python SDK
schedules_list = client.transformations.schedules.list()
{
  "items": [
    {
      "id": 123,
      "externalId": "<string>",
      "createdTime": 123,
      "lastUpdatedTime": 123,
      "interval": "0 0 * * *",
      "isPaused": true
    }
  ],
  "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

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.

includePublic
boolean

Whether public transformations should be included in the results. The default is true.

Response

Response with list of schedules.

items
object[]
nextCursor
string

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

Last modified on April 23, 2026