Download the current Commercial Offer proposal
curl --request GET \
--url https://api.interchange.io/api/v2/billing/iu-rate-card/document.pdf \
--header 'Authorization: Bearer <token>'import requests
url = "https://api.interchange.io/api/v2/billing/iu-rate-card/document.pdf"
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/billing/iu-rate-card/document.pdf', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));"<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": {}
}
}{
"data": null,
"error": {
"code": "<string>",
"message": "<string>",
"field": "<string>",
"details": {}
}
}{
"data": null,
"error": {
"code": "<string>",
"message": "<string>",
"field": "<string>",
"details": {}
}
}Buyer Billing
Download the current Commercial Offer proposal
Downloads the customer-facing PDF generated from the same immutable proposal snapshot shown in Plan & Billing. The route resolves only the authenticated organization’s pending, upcoming, or current Commercial Offer. Exactly one of bindingId or offerVersion is required.
GET
/
billing
/
iu-rate-card
/
document.pdf
Download the current Commercial Offer proposal
curl --request GET \
--url https://api.interchange.io/api/v2/billing/iu-rate-card/document.pdf \
--header 'Authorization: Bearer <token>'import requests
url = "https://api.interchange.io/api/v2/billing/iu-rate-card/document.pdf"
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/billing/iu-rate-card/document.pdf', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));"<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": {}
}
}{
"data": null,
"error": {
"code": "<string>",
"message": "<string>",
"field": "<string>",
"details": {}
}
}{
"data": null,
"error": {
"code": "<string>",
"message": "<string>",
"field": "<string>",
"details": {}
}
}Authorizations
API key or access token
Query Parameters
Accepted plan record to render. Exactly one of bindingId or offerVersion is required.
Pattern:
^\d+$Pending offer version to render. Exactly one of bindingId or offerVersion is required.
Pattern:
^v1:[0-9a-f]{64}$Response
Download the current Commercial Offer proposal
The response is of type file.