Get Invoice Settings

You can retrieve the invoice settings for your payment page by sending a get invoice request.

Endpoints

Send the API request to one of these endpoints:
Production:
GET
https://api.visaacceptance.com
/invoicing/v2/invoiceSettings
Test:
GET
https://apitest.visaacceptance.com
/invoicing/v2/invoiceSettings

Successful Response

A successful request is indicated by a response message that includes this information:
  • Logo
  • Business name
  • Customized email message
  • Email reminder indicator
  • Color and font of the invoice
  • Language used in the invoice
  • Currency of the invoiced amount
  • Payer authentication enablement indicator

Example: Get Invoice Settings

Request
{}
Response to a Successful Request
{ "submitTimeUtc": "2024-07-27T23:42:03.522831275Z", "invoiceSettingsInformation": { "merchantDisplayName": "Custom Merchant Display Name", "customEmailMessage": "Custom merchant email message", "enableReminders": true, "headerStyle": { "fontColor": "#000001", "backgroundColor": "#FFFFFF" }, "deliveryLanguage": "en-US", "defaultCurrencyCode": "USD", "payerAuthentication3DSVersion": "True", "showVatNumber": false, "phoneNumber": false, "shipTo": false, "email": true } }