- Lists contact information
Lists payments configuration
Lists levels 2 and 3 autofill settings
Updates levels 2 and 3 settings
Lists contact information
GET {{baseURL}}/v2/settings/contact-information
This endpoint lists contact information for the merchant.
See Also:
To retrieve the payment configuration, see GET /v2/settings/payment-config.
To retrieve the transaction autofill settings, see GET /v2/settings/transaction-autofill.
To update the transaction autofill settings, see PATCH /v2/settings/transaction-autofill.
Security
Bearer
- Sandbox environmenthttps://sandbox.api.flute.com/v2/settings/contact-information
- Production environmenthttps://api.flute.com/v2/settings/contact-information
curl -i -X GET \
https://sandbox.api.flute.com/v2/settings/contact-information \
-H 'Authorization: Bearer <YOUR_JWT_HERE>'Response
{ "contactInfos": [ { "contactInfoId": "8d638f27-1a16-4f1b-92fe-0ea16d4a6461", "addressName": "Main Office", "email": "contact@company.com", "mobilePhoneNumber": "+12125550100", "isMainAddress": true, "isDefaultAddress": true, "city": "New York", "countryCode": "US", "addressLine1": "123 Main St", "addressLine2": "Suite 100", "postalCode": "10001", "stateCode": "NY" } ] }