---
title: "Get a transformation execution"
method: GET
path: "/transformations/{id}/executions/{execution_id}"
tags: ["Transformations"]
---

# Get a transformation execution

`GET /transformations/{id}/executions/{execution_id}`

## Path parameters

- `id` string, required — Transformation ID
- `execution_id` string, required — Execution ID

## Response `200`

A single transformation execution

- TransformationExecution
  - `id` string, required
  - `transformed_event_data_id` string, nullable
  - `original_event_data_id` string, required
  - `transformation_id` string, required
  - `team_id` string, required — ID of the project
  - `webhook_id` string, required — ID of the associated connection (webhook)
  - `log_level` 'debug' | 'info' | 'warn' | 'error' | 'fatal', required — The minimum log level to open the issue on
  - `logs` ConsoleLine[], required
    - `type` 'error' | 'log' | 'warn' | 'info' | 'debug', required
    - `message` string, required
  - `updated_at` string, date-time, required
  - `created_at` string, date-time, required
  - `original_event_data` ShortEventData, nullable — Request data
    - `path` string, required — Request path
    - `query` string, nullable, required — Raw query param string
    - `parsed_query` union, required — JSON representation of query params
      - string, nullable
      - object
    - `headers` union, required — JSON representation of the headers
      - string
      - object
    - `body` union, required — JSON or string representation of the body
      - string
      - object
      - unknown[]
        - unknown
    - `is_large_payload` boolean, nullable — Whether the payload is considered large payload and not searchable
  - `transformed_event_data` ShortEventData, nullable — Request data
    - `path` string, required — Request path
    - `query` string, nullable, required — Raw query param string
    - `parsed_query` union, required — JSON representation of query params
      - string, nullable
      - object
    - `headers` union, required — JSON representation of the headers
      - string
      - object
    - `body` union, required — JSON or string representation of the body
      - string
      - object
      - unknown[]
        - unknown
    - `is_large_payload` boolean, nullable — Whether the payload is considered large payload and not searchable
  - `issue_id` string, nullable

## Other responses

- `404` — Not Found

---

[API](https://skmtc.net/hookdeck/apis/hookdeck-admin-rest-api.md) · [All operations](https://skmtc.net/hookdeck/apis/hookdeck-admin-rest-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/hookdeck/hookdeck-admin-rest-api/versions/31da4ed27d31/schema)
