Skip to content

Lists contact information

Request

GET {{baseURL}}/pay-api/v1/configurations/contact-infos

This endpoint returns the merchant's detailed information.

The list includes contact information records for the merchant, such as address, phone number, and credit cards. This information can be integrated with other endpoints of the application, such as the invoice creation functionality.

See Also:
To retrieve a merchant's payment configuration, see GET /pay-api/v1/configurations/payments.

Security
Bearer
curl -i -X GET \
  https://developer.flute.com/_mock/api-reference/pay-api/v1/configurations/contact-infos \
  -H 'Authorization: Bearer <YOUR_JWT_HERE>'

Responses

OK

Bodyapplication/json
contactInfosArray of objects or null

A list of contact information entries associated with the merchant.

Response
{ "contactInfos": [ { "id": "24d5e6f7-8a9b-4c0d-1e2f-3a4b5c6d7e03", "addressName": "Main Office", "addressLine1": "322 Unicorn Boulevard", "addressLine2": "Office 3", "city": "Chicago", "zip": "60612", "countryId": 1, "stateId": 4, "stateName": "Illinois", "email": "pepparedstreetcafe@example.com", "businessPhoneNumber": "+14155552309", "merchantId": "46063d32-10fa-44cb-b118-20ddd085ce3f", "isMainAddress": true, "isDefaultAddress": true } ] }