# Retry Failed Transaction

## Retry failed transaction

> Retries a previously failed transaction

```json
{"openapi":"3.0.0","info":{"title":"pay.io payment gateway","version":"1.0"},"servers":[{"url":"https://gateway.stage.pay.io","variables":{}}],"paths":{"/v1/merchant/transaction/payout/retry":{"post":{"callbacks":{},"description":"Retries a previously failed transaction","operationId":"HubwalletPaymentGatewayWeb.Controller.Merchant.Default.retry_transaction","parameters":[],"requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Retry_Transaction_Request"}}},"description":"Retry transaction parameters","required":true},"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Retry_Withdraw_Response"}}},"description":"Transaction retried"},"404":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error_Response"}}},"description":"Transaction not found"}},"summary":"Retry failed transaction","tags":["merchant"]}}},"components":{"schemas":{"Retry_Transaction_Request":{"description":"Request to retry a failed transaction","properties":{"transaction_uuid":{"description":"Transaction identifier","format":"uuid","type":"string"}},"required":["transaction_uuid"],"title":"Retry_Transaction_Request","type":"object"},"Retry_Withdraw_Response":{"description":"Response for retry transaction operations","properties":{"status":{"description":"Status message","nullable":true,"type":"string"}},"required":["message"],"title":"Retry_Withdraw_Response","type":"object"},"Error_Response":{"description":"Error response format","properties":{"code":{"description":"Error code","nullable":true,"type":"string"},"details":{"description":"Additional error details","nullable":true,"type":"object"},"error":{"description":"Error message","type":"string"}},"required":["error"],"title":"Error_Response","type":"object"}}}}
```
