# Send Event

## Send Event Actions

### SendEvent

Sends the event received to another stream with the following event metadata parameters:

{% tabs %}
{% tab title="Table" %}

| Parameter    | Definition              | Example        | Default                |
| ------------ | ----------------------- | -------------- | ---------------------- |
| System       | System to send event to | kafka\_default | -                      |
| Stream       | Stream to send event to | tracking       | -                      |
| Key          | Key value to use        | 123            | -                      |
| Partition    | Partition to use        | 1              | \[Calculated from key] |
| {% endtab %} |                         |                |                        |

{% tab title="JSON Schema" %}

```json
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "type": "object",
  "properties": {
    "eventMeta": {
      "type": "object",
      "properties": {
        "parameters": {
          "type": "object",
          "properties": {
            "system": {
              "type": "string",
              "definition": "System to send event to",
              "example": "kafka_default",
              "default": null
            },
            "stream": {
              "type": "string",
              "definition": "Stream to send event to",
              "example": "tracking",
              "default": null
            },
            "key": {
              "type": ["string", "integer"],
              "definition": "Key value to use",
              "example": 123,
              "default": null
            },
            "partition": {
              "type": ["integer", "string"],
              "definition": "Partition to use",
              "example": 1,
              "default": "[Calculated from key]"
            }
          }
        }
      }
    }
  }
}
```

{% endtab %}
{% endtabs %}


---

# 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/send-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.
