Visa Acceptance · Example Payload

Visa Acceptance Refund Payment Example

PaymentsE-CommerceFintechCredit CardsInvoicingPayment LinksDigital Wallets

Visa Acceptance Refund Payment Example is an example object payload from Visa Acceptance, with 2 top-level fields. It illustrates the shape of data this provider's APIs accept or return.

Top-level fields

requestresponse

Example Payload

Raw ↑
{
  "request": {
    "method": "POST",
    "path": "/pts/v2/payments/7084028073956085604105/refunds",
    "headers": {
      "Authorization": "Bearer {jwt_token}",
      "Content-Type": "application/json"
    },
    "body": {
      "orderInformation": {
        "amountDetails": {
          "totalAmount": "50.00",
          "currency": "USD"
        }
      }
    }
  },
  "response": {
    "status": 201,
    "body": {
      "id": "7084028073956085604106",
      "status": "PENDING",
      "submitTimeUtc": "2026-05-03T14:00:00Z"
    }
  }
}