replay_simulation_run_event
Resend a specific event from a Paddle simulation run using its ID to retest individual event delivery without creating a new simulation run.
Instructions
This tool will resend an event sent by a simulation run from Paddle using its ID.
This is useful to retest the sending of an individual event within a simulation run rather than creating a new simulation run and sending all events again.
Paddle creates a new simulation run event entity for the replay, related to the same simulation run.
If successful, the response includes the new simulation run event entity.
Check the following details to understand the success or failure of the event according to Paddle and debug issues:
status: Status of the event according to Paddle.
pending: No attempt has been made to deliver the event yet.
success: The event was delivered successfully.
failure: Paddle tried to deliver the simulated event, but it failed. If response object is null, no response received from the server. Check the notification setting endpoint configuration.
aborted: Paddle couldn't attempt delivery of the simulated event.
payload: Payload sent by Paddle for this event within the simulation.
request.body: Request body sent by Paddle.
response.body: Response body sent by the responding server. May be empty for success responses.
response.statusCode: HTTP status code sent by the responding server.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| simulationId | Yes | Paddle ID of the simulation entity associated with the run the event was sent as part of. | |
| simulationRunId | Yes | Paddle ID of the simulation run entity the event was sent as part of. | |
| simulationEventId | Yes | Paddle ID of the simulation event entity to replay. |