v1

latestOpenAPI 3.1.02026-07-24251250397.8 KB
transformations

List transformation run steps

Retrieves a paginated list of the individual steps that make up transformation runs for the specified site

Use the q parameter to filter steps by transformation_run_id, step_type, or state.

get/v2/sites/{site_id}/transformation_run_steps/

Path parameters

site_idstring required

Unique identifier for a resource

Example:Ny05CEfj

Unique alphanumeric ID of the site

Query parameters

pageinteger

Sets the page number for pagination. First page is 1.

page_lengthinteger

Sets the page length (number of items you get in the response) for pagination

If page_length is not specified, the default value will be set.

Default: 10

qstring

Filter transformation run steps using a query string

Example: transformation_run_id:abcd1234

sortstring

Sort results by field and direction

Example: created:dsc

Response

Transformation run steps successfully retrieved

pageinteger

Current page number

page_lengthinteger

Number of items per page

totalinteger

Total number of items

Example response

{
  "transformation_run_steps": [
    {
      "id": "Ny05CEfj",
      "site_id": "Ny05CEfj",
      "transformation_run_id": "Ny05CEfj",
      "lineage": {
        "parent_step_ids": [
          "Ny05CEfj"
        ],
        "retried_from_step_id": "Ny05CEfj"
      },
      "metadata": {
        "output_data": {
          "asset_version_ids": [
            "Ny05CEfj"
          ],
          "decision": {
            "decided_by": "Ny05CEfj",
            "approved_asset_version_ids": [
              "Ny05CEfj"
            ],
            "regenerate_input_asset_version_ids": [
              "Ny05CEfj"
            ]
          }
        }
      },
      "relationships": {
        "transformation_run": {
          "id": "Ny05CEfj"
        }
      }
    }
  ]
}