Read a safe subscription and billing-health summary
GET
/v1/mobile/billing/summary
const url = 'https://api.vocapable.com/v1/mobile/billing/summary';const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request GET \ --url https://api.vocapable.com/v1/mobile/billing/summary \ --header 'Authorization: Bearer <token>'Authorizations
Section titled “Authorizations”Responses
Section titled “Responses”Successful Response
Media typeapplication/json
MobileSubscriptionHealth
The full native billing read for Admin/Manager, still safe for an app cache policy.
object
plan_label
required
Plan Label
string
status
required
Status
string
payment_attention
required
Payment Attention
string
budget
Any of:
MobileBillingBudget
The current spend guardrails; no payment method or provider data is representable.
null
invoices
generated_at
required
Generated At
string format: date-time
Example
{ "status": "trialing", "payment_attention": "none", "budget": { "period": "daily" }, "invoices": [ { "status": "paid" } ]}