Previously submitted transactions that have not yet settled can be voided.
| URL | Method |
|---|---|
| api/transaction/void | POST |
Include the following JSON object with the post to describe the transaction.
| Field | Description | Required |
|---|---|---|
| { | ||
| ApiKey: "string", | your api key | * |
| TransactionId: "string" | the id of a previously entered transaction | * |
| } |
This API returns the following in JSON format if the operation is successful.
| Field | Description |
|---|---|
| { | |
| ID | TransactionId of the transaction |
| Success | true |
| Message | "Transaction Voided" |
| } |