Cancel a transaction
Cancel a transaction request before it is processed.
PUT /api/transactionRequests/{id}
For full request and response schemas, see Cancel transaction request.
After the transaction enters the processing phase, you can no longer cancel it. For information about transaction phases, see Transaction Processing Phases.
Example request
PUT /api/transactionRequests/ae6ca885-8694-4a96-9922-6451671e8603
Authorization: Bearer <access_token>
Content-Type: application/json
{
"Status": "Cancelled"
}Example response
{
"Status": "Cancelled"
}
Next steps
After cancelling a transaction, you can verify the status using:
Updated 24 days ago