# Transform Event

## Transform Event Actions

### Transform

Applies the requested transformation on an event. Event metadata parameters applicable for this action are as follows:

{% tabs %}
{% tab title="Parameters (table)" %}

| Parameter    | Definition                                    | Example                                              | Default |
| ------------ | --------------------------------------------- | ---------------------------------------------------- | ------- |
| Class        | Fully qualified name of the transformer class | com.rierino.handler.transform.ReducePayloadTransform | -       |
| {% endtab %} |                                               |                                                      |         |

{% tab title="Parameters (JSON Schema)" %}

```json
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "type": "object",
  "properties": {
    "eventMeta": {
      "type": "object",
      "properties": {
        "parameters": {
          "type": "object",
          "properties": {
            "class": {
              "type": "string",
              "description": "Fully qualified name of the transformer class",
              "examples": [
                "com.rierino.handler.transform.ReducePayloadTransform"
              ],
              "default": null
            }
          }
        }
      }
    }
  }
}
```

{% endtab %}
{% endtabs %}

{% hint style="info" %}
All transformer classes available in saga flows can be used with this handler, making it possible to distribute resource-consuming transformations to different runners.
{% endhint %}


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://docs.rierino.com/devops/api-event-and-process-flows/configuring-saga-steps/event-step/flow-actions/transform-event.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
