public-roadmap
public-roadmap copied to clipboard
[Account API] Include Renewal Date in Account API's Response
Currently, our Account API returns only the information below. One of our users asked to include renewal date of the subscription in the response.
{
"account_id": "5ac54d6adefb2f1dba1663f5",
"api_key": "SECRET_API_KEY",
"account_email": "[email protected]",
"plan_id": "bigdata",
"plan_name": "Big Data Plan",
"plan_monthly_price": 250.0,
"searches_per_month": 30000,
"plan_searches_left": 5958,
"extra_credits": 0,
"total_searches_left": 5958,
"this_month_usage": 24042,
"last_hour_searches": 42,
"account_rate_limit_per_hour": 6000
}
Another customer requested the number of days left in the current billing cycle be included in the Account API response:
A high-volume enterprise customer requested to add: the current billing period and the end date as well.