Get the app-root Rate Card review decision
curl --request GET \
--url https://api.interchange.io/api/v2/billing/iu-rate-card/login-prompt \
--header 'Authorization: Bearer <token>'import requests
url = "https://api.interchange.io/api/v2/billing/iu-rate-card/login-prompt"
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/login-prompt', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));{
"data": {
"billingCustomerId": 4503599627370495,
"promptKey": "<string>",
"action": "ASK_ADMIN"
}
}{
"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
Get the app-root Rate Card review decision
Returns null when no review is due. Direct human organisation administrators receive the exact published offer identity; ordinary members receive only an ask-admin decision and opaque revision key. No prices, plans, discounts or agreement documents are returned. This read never creates a binding or records a shown event.
GET
/
billing
/
iu-rate-card
/
login-prompt
Get the app-root Rate Card review decision
curl --request GET \
--url https://api.interchange.io/api/v2/billing/iu-rate-card/login-prompt \
--header 'Authorization: Bearer <token>'import requests
url = "https://api.interchange.io/api/v2/billing/iu-rate-card/login-prompt"
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/login-prompt', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));{
"data": {
"billingCustomerId": 4503599627370495,
"promptKey": "<string>",
"action": "ASK_ADMIN"
}
}{
"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": {}
}
}