# POST /simulations/{simulation_id}/runs/{simulation_run_id}/events/{simulation_event_id}/replay

**Replay an event for a simulation run**

Attempts to resend a simulation run log using its ID.

Paddle creates a new simulation run log entity for the replay, related to the same simulation run.

If successful, your response includes the new simulation run log entity.

**Required permissions:** `notification_simulation.write`

## Path parameters

| Name | Type | Required | Description |
| --- | --- | --- | --- |
| `simulation_id` | string | required | Paddle ID of the simulation entity to work with. |
| `simulation_run_id` | string | required | Paddle ID of the simulation run entity to work with. |
| `simulation_event_id` | string | required | Paddle ID of the simulation event entity to work with. |

## Response (202)

- `data`: object (required) — Represents a simulation event.
  - `id`: string (required) — Unique Paddle ID for this simulation event, prefixed with `ntfsimevt_`. (pattern: `^ntfsimevt_[a-z\d]{26}$`)
  - `status`: string (required) — Status of this simulation run log.
  - `event_type`: string (required) — Type of event sent by Paddle, in the format `entity.event_type`.
  - `payload`: object (required) — Simulation payload. Pass a JSON object that matches the schema for an event type to simulate a custom payload. If omitted, Paddle populates with a demo example.
  - `request` (required) — Information about the request. Sent by Paddle as part of the simulation.
  - `response` (required) — Information about the response. Sent by the responding server for the notification setting.
  - `created_at`: string (date-time) (required) — RFC 3339 datetime string of when this entity was created. Set automatically by Paddle.
  - `updated_at`: string (date-time) (required) — RFC 3339 datetime string of when this entity was updated. Set automatically by Paddle.
- `meta`: object (required) — Information about this response.
  - `request_id`: string (required) — Unique ID for the request relating to this response. Provide this when contacting Paddle support about a specific request.

### Response example

```json
{
  "data": {
    "id": "ntfsimevt_01j82j3tr93j99gfv26tsngc27",
    "status": "pending",
    "event_type": "address.created",
    "payload": {
      "id": "add_01hv8gq3318ktkfengj2r75gfx",
      "city": "New York",
      "region": "NY",
      "status": "active",
      "created_at": "2024-04-12T06:42:58.785Z",
      "first_line": "4050 Jefferson Plaza, 41st Floor",
      "updated_at": "2024-04-12T06:42:58.785Z",
      "custom_data": null,
      "customer_id": "ctm_01hv6y1jedq4p1n0yqn5ba3ky4",
      "description": "Head Office",
      "import_meta": null,
      "postal_code": "10021",
      "second_line": null,
      "country_code": "US"
    },
    "request": null,
    "response": null,
    "created_at": "2024-09-18T12:36:01.929359Z",
    "updated_at": "2024-09-18T12:37:35.659788Z"
  },
  "meta": {
    "request_id": "0369cb98-380b-40a9-bfd8-8ac4856c05f6"
  }
}
```
