Retrieve schedules

Retrieve transformation schedules by transformation IDs or external IDs.

Securityoidc-token or oauth2-client-credentials or oauth2-open-industrial-data or oauth2-auth-code
Request
Request Body schema: application/json
required

List of transformation IDs of schedules to retrieve. Must be up to a maximum of 1000 items and all of them must be unique.

Array of TransformationCogniteExternalId (object) or TransformationCogniteInternalId (object) <= 1000 items
ignoreUnknownIds
boolean

Ignore IDs and external IDs that are not found. Defaults to false.

Responses
200

Response with list of schedules.

400

The response for a failed request.

403

The response for a forbidden request.

409

The response for a conflict.

post/transformations/schedules/byids
Request samples
res = client.transformations.schedules.retrieve(id=1)

res = client.transformations.schedules.retrieve(external_id="1")
res = client.transformations.schedules.retrieve_multiple(ids=[1, 2, 3])

res = client.transformations.schedules.retrieve_multiple(external_ids=["t1", "t2"])
Response samples
application/json
{
  • "items": [
    • {
      }
    ]
}