Light Mode
Update Transaction
PUT
/transactions/{transaction_id}Last modified: 5 days ago
This endpoint allows you to refund
, void
, or reverse
a transaction by passing the transaction_id
as a path parameter.
The endpoint also supports partial refunds.
:::caution
The store must have enough balance to process the refund amounts
:::
Request
Path Params
transaction_id
integer
required
Transaction ID. Get a list of Transaction IDs from here
Example:
293485739
Body Params application/json
object {0}
Example
{}
Request samples
Responses
Progress In-Action(201)
Error Validation(422)
Not Found(404)
Progress In-Action
HTTP Code: 201
Content Type : JSONapplication/json
Data Schema
No schema defined
ExampleSuccess (201)
{
"status": 201,
"success": true,
"data": {
"message": "Invoice Partially Refunded successfully",
"code": 201
}
}
Last modified: 5 days ago