POST
/
api
/
v1
/
server-to-server-interface
/
void
curl --request POST \
  --url https://api-dev.paymentoptions.com/api/v1/api/v1/server-to-server-interface/void \
  --header 'Authorization: <api-key>' \
  --header 'Content-Type: application/json' \
  --header 'x-api-key: <api-key>' \
  --data '{
  "transactionId": "ab8444e7-fec0-40dd-994d-0ad813785f74",
  "merchant_id": "< Merchant ID >"
}'
{
  "success": true,
  "status_code": 201,
  "is_live": false,
  "transaction_type": "VOID",
  "gateway_response": {
    "version": "1",
    "type": "INFO",
    "message": "Authorization Successfully Cancelled.",
    "code": "INFO0003"
  },
  "merchant_details": {
    "legal_name": "Tink15 Factory",
    "mid": "< Merchant ID >",
    "merchant_txn_ref": "qwe"
  },
  "payment_details": {
    "amount": 1000,
    "response_code": 0,
    "auth_code": "917290",
    "currency": "JPY",
    "payment_method": "ECMC-SSL",
    "scheme": "MASTERCARD",
    "card": {
      "name": "John Doe",
      "number": "5200000000001005",
      "exp_month": "12",
      "exp_year": "24"
    },
    "additional_data": {
      "payment_data_source": {
        "type": "card"
      }
    }
  },
  "transaction_details": {
    "id": "9e9255f5-d3dc-423e-9026-6e4da194bab5",
    "ref": 74813,
    "timestamp": "2024-11-25T08:33:48.000Z",
    "merchant_txn_ref": "qwe"
  }
}

Key Points

  • The Void Authorization API is crucial when a decision is made not to proceed with a transaction that has been authorised but not yet captured.

  • Once the authorization is voided, the funds that were held on the customer’s account are released, making them available to the customer again.

  • This API is typically used in scenarios where an order is cancelled before fulfilment or if there’s a change in transaction details requiring re-authorisation.

Flow diagram

Api Parameters

Authorizations

Authorization
string
header
required

API Key for Authorization. Format: 'Basic YOUR_API_KEY_HERE'

x-api-key
string
header
required

API Key specific to x-api-key.

Body

application/json
The request payload to void a transaction.
transactionId
string
required

The original transaction ID of the authorized transaction.

Maximum length: 36
Example:

"ab8444e7-fec0-40dd-994d-0ad813785f74"

merchant_id
string
required

The merchant ID (DASMID).

Maximum length: 10
Example:

"< Merchant ID >"

Response

201 - application/json
Transaction voided successfully
success
boolean

True on successful transaction, false on failure.

Example:

true

status_code
integer

The status code of the transaction.

Example:

201

is_live
boolean

True if live transaction, false if test transaction.

Example:

false

transaction_type
string

The transaction type (e.g., VOID).

Example:

"VOID"

gateway_response
object

A JSON object containing the response from the gateway.

merchant_details
object

A JSON object containing the details of the merchant.

payment_details
object

A JSON object containing the payment details of the transaction.

transaction_details
object

A JSON object containing details of the transaction.