# GET /simulations/{simulation_id}/runs/{simulation_run_id}/events/{simulation_event_id}

**Get an event for a simulation run**

Returns a simulation event using its ID.

**Required permissions:** `notification_simulation.read`

## 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 (200)

- `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_01j82hf8jrwjsf9337a35tqghp",
    "status": "success",
    "event_type": "adjustment.updated",
    "payload": {
      "id": "adj_01hvgf2s84dr6reszzg29zbvcm",
      "items": [
        {
          "id": "adjitm_01hvgf2s84dr6reszzg2gx70gj",
          "type": "partial",
          "amount": "100",
          "totals": {
            "tax": "8",
            "total": "100",
            "subtotal": "92"
          },
          "item_id": "txnitm_01hvcc94b7qgz60qmrqmbm19zw",
          "proration": null
        }
      ],
      "action": "refund",
      "reason": "error",
      "status": "pending_approval",
      "totals": {
        "fee": "5",
        "tax": "8",
        "total": "100",
        "earnings": "87",
        "subtotal": "92",
        "currency_code": "USD"
      },
      "created_at": "2024-04-15T08:48:20.239695Z",
      "updated_at": "2024-04-15T08:48:20.239695Z",
      "customer_id": "ctm_01hv6y1jedq4p1n0yqn5ba3ky4",
      "currency_code": "USD",
      "payout_totals": {
        "fee": "5",
        "tax": "8",
        "total": "100",
        "earnings": "87",
        "subtotal": "92",
        "currency_code": "USD"
      },
      "transaction_id": "txn_01hvcc93znj3mpqt1tenkjb04y",
      "subscription_id": "sub_01hvccbx32q2gb40sqx7n42430",
      "credit_applied_to_balance": null
    },
    "request": {
      "body": "{\"event_id\":\"ntfsimevt_01j82hf8jrwjsf9337a35tqghp\",\"event_type\":\"adjustment.updated\",\"occurred_at\":\"2024-09-18T12:24:47.960617Z\",\"data\":{\"id\":\"adj_01hvgf2s84dr6reszzg29zbvcm\",\"items\":[{\"id\":\"adjitm_01hvgf2s84dr6reszzg2gx70gj\",\"type\":\"partial\",\"amount\":\"100\",\"totals\":{\"tax\":\"8\",\"total\":\"100\",\"subtotal\":\"92\"},\"item_id\":\"txnitm_01hvcc94b7qgz60qmrqmbm19zw\",\"proration\":null}],\"action\":\"refund\",\"reason\":\"error\",\"status\":\"pending_approval\",\"totals\":{\"fee\":\"5\",\"tax\":\"8\",\"total\":\"100\",\"earnings\":\"87\",\"subtotal\":\"92\",\"currency_code\":\"USD\"},\"created_at\":\"2024-04-15T08:48:20.239695Z\",\"updated_at\":\"2024-04-15T08:48:20.239695Z\",\"customer_id\":\"ctm_01hv6y1jedq4p1n0yqn5ba3ky4\",\"currency_code\":\"USD\",\"payout_totals\":{\"fee\":\"5\",\"tax\":\"8\",\"total\":\"100\",\"earnings\":\"87\",\"subtotal\":\"92\",\"currency_code\":\"USD\"},\"transaction_id\":\"txn_01hvcc93znj3mpqt1tenkjb04y\",\"subscription_id\":\"sub_01hvccbx32q2gb40sqx7n42430\",\"credit_applied_to_balance\":null}}"
    },
    "response": {
      "body": "{\"status\":\"SUCCESS\",\"message\":\"Request handled by Hookdeck. Check your dashboard to inspect the request: https://dashboard.hookdeck.com/requests/req_6ob9lGLoCA2qKWS6VGXR\",\"request_id\":\"req_6ob9lGLoCA2qKWS6VGXR\"}",
      "status_code": 200
    },
    "created_at": "2024-09-18T12:24:47.960617Z",
    "updated_at": "2024-09-18T12:24:48.309530Z"
  },
  "meta": {
    "request_id": "76421aed-4a64-4eb6-b14e-72407f5ec40e"
  }
}
```
