Retrieve transformation jobs
- async AsyncCogniteClient.transformations.jobs.retrieve(
- id: int,
Retrieve a single transformation job by id.
- Parameters:
id (int) – Job internal Id
- Returns:
Requested transformation job or None if it does not exist.
- Return type:
TransformationJob | None
Examples
Get transformation job by id:
>>> from cognite.client import CogniteClient, AsyncCogniteClient >>> client = CogniteClient() >>> # async_client = AsyncCogniteClient() # another option >>> res = client.transformations.jobs.retrieve(id=1)