Visa Acceptance · Example Payload

Visa Acceptance Create Invoice Example

PaymentsE-CommerceFintechCredit CardsInvoicingPayment LinksDigital Wallets

Visa Acceptance Create Invoice 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/invoices",
    "headers": {
      "Authorization": "Bearer {jwt_token}",
      "Content-Type": "application/json"
    },
    "body": {
      "customerInformation": {
        "name": "Acme Corp",
        "email": "billing@acme.com"
      },
      "orderInformation": {
        "amountDetails": {
          "totalAmount": "1500.00",
          "currency": "USD"
        },
        "lineItems": [
          {
            "productName": "Annual Software License",
            "quantity": 1,
            "unitPrice": "1500.00",
            "totalAmount": "1500.00"
          }
        ]
      },
      "dueDate": "2026-06-03"
    }
  },
  "response": {
    "status": 201,
    "body": {
      "id": "inv-20260503-001",
      "status": "CREATED",
      "invoiceUrl": "https://pay.visaacceptance.com/invoice/inv-20260503-001",
      "createdDate": "2026-05-03T12:00:00Z",
      "dueDate": "2026-06-03"
    }
  }
}