Skip to main content
GET
/
billing
/
info
Get billing information
curl --request GET \
  --url https://api.interchange.io/api/v2/buyer/billing/info \
  --header 'Authorization: Bearer <token>'
import requests

url = "https://api.interchange.io/api/v2/buyer/billing/info"

headers = {"Authorization": "Bearer <token>"}

response = requests.get(url, headers=headers)

print(response.text)
const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};

fetch('https://api.interchange.io/api/v2/buyer/billing/info', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));
{
  "billingInfo": {
    "contactName": "<string>",
    "email": [
      "<string>"
    ],
    "ccEmails": [
      "<string>"
    ],
    "phone": "<string>",
    "address": "<string>",
    "address2": "<string>",
    "city": "<string>",
    "region": "<string>",
    "postalCode": "<string>",
    "countryAlpha2": "<string>",
    "taxId": "<string>"
  }
}
{
"data": null,
"error": {
"code": "<string>",
"message": "<string>",
"field": "<string>",
"details": {}
}
}
{
"data": null,
"error": {
"code": "<string>",
"message": "<string>",
"field": "<string>",
"details": {}
}
}
{
"data": null,
"error": {
"code": "<string>",
"message": "<string>",
"field": "<string>",
"details": {}
}
}

Authorizations

Authorization
string
header
required

API key or access token

Response

Get billing information

billingInfo
object
required

Billing (payer) information for the authenticated customer, used on manually issued invoices.