Retrieve transformation jobs

async AsyncCogniteClient.transformations.jobs.retrieve_multiple(
ids: Sequence[int],
ignore_unknown_ids: bool = False,
) TransformationJobList

Retrieve multiple transformation jobs by id.

Parameters:
  • ids (Sequence[int]) – Job internal Ids

  • ignore_unknown_ids (bool) – Ignore IDs that are not found rather than throw an exception.

Returns:

Requested transformation jobs.

Return type:

TransformationJobList

Examples

Get jobs by id:

>>> from cognite.client import CogniteClient, AsyncCogniteClient
>>> client = CogniteClient()
>>> # async_client = AsyncCogniteClient()  # another option
>>> res = client.transformations.jobs.retrieve_multiple(ids=[1, 2, 3])