Get all Billing Overview

curl --request GET \
  --url https://api.acefone.co.uk/v1/billing/dashboard \
  --header 'accept: application/json'

Response

Variable NameDescriptionData Type
idUser's unique IDNumber
nameName associated with user's accountString
emailEmail address associated with user's accountString
balanceUser's current balanceNumber
credit_limitCredit limit allowed on user's accountNumber
due_chargesTotal due charges pending on user's accountNumber
next_billing_dateDate for renewal of next billing cycleString
billing_cycleBilling cycleString
auto_chargeAuto renew enable/disabled status. (1: Enabled, 0: Disable)Number
billing_typeType of billing activated on user's accountString
due_dateDate till which due-charges need to be settledString
currencyCurrency for user's accountString
plansActive and closed plans associated with user's accountObject
plans.activeActive planObject
plans.active[].idUnique ID of productNumber
plans.active[].nameName of the productString
plans.active[].quantityQuantity of product appliedNumber
plans.active[].auto_renewIs auto renew applied on the productNumber
plans.active[].numbersMy numbers assigned to this productString
plans.active[].extension_idsEids of the extensions associated with this productString
plans.active[].extension_namesNames of the extensions associated with this productString
plans.active[].amount_paidAmount charged to customerNumber
plans.active[].setup_costSetup costNumber
plans.active[].start_dateDate on which product appliedString
plans.active[].renew_on_dateDate on which product will be renewedString
plans.active[].minutes_consumedTotal minutes consumedNumber
plans.active[].minutes_remainingMinutes remainingNumber
plans.active[].minutes_assignedTotal minutes assigned to customerNumber
plans.active[].end_dateDate on which product endsString
plans.closedClose plansObject
plans.closed[].idUnique ID of productNumber
plans.closed[].nameName of the productString
plans.closed[].quantityQuantity of product appliedNumber
plans.closed[].auto_renewIs auto renew applied on the productNumber
plans.closed[].numbersMy numbers assigned to this productString
plans.closed[].extension_idsEids of the extensions associated with this productString
plans.closed[].extension_namesNames of the extensions associated with this productString
plans.closed[].amount_paidAmount charged to customerNumber
plans.closed[].setup_costSetup costNumber
plans.closed[].start_dateDate on which product appliedString
plans.closed[].renew_on_dateDate on which product will be renewedString
plans.closed[].minutes_consumedTotal minutes consumedNumber
plans.closed[].minutes_remainingMinutes remainingNumber
plans.closed[].minutes_assignedTotal minutes assigned to customerNumber
plans.closed[].end_dateDate on which product endsString
subscriptionsActive and closed subscriptions associated with user's accountObject
subscriptions.activeActive subscriptionObject
subscriptions.active[].idUnique ID of subscriptionNumber
subscriptions.active[].nameName of the subscriptionString
subscriptions.active[].auto_renewAuto renew enable/disabled status. (1: Enabled, 0: Disable)Number
subscriptions.active[].numbersMy numbers associated with subscriptionsNumber
subscriptions.active[].extensionsExtensions associated with subscriptionsString
subscriptions.active[].chargeCharges applied for subscriptionsNumber
subscriptions.closedClose subscriptionObject
subscriptions.closed[].idUnique ID of subscriptionNumber
subscriptions.closed[].nameName of the subscriptionString
subscriptions.closed[].auto_renewAuto renew enable/disabled status. (1: Enabled, 0: Disable)Number
subscriptions.closed[].numbersMy numbers associated with subscriptionsNumber
subscriptions.closed[].extensionsExtensions associated with subscriptionsString
subscriptions.closed[].chargeCharges applied for subscriptionsNumber
{
	"id": 291,
	"name": "CRM-Client",
	"email": "[email protected]",
	"balance": 0,
	"credit_limit": 0,
	"due_charges": 0,
	"next_billing_date": 1584849600,
	"billing_cycle": "30 days",
	"auto_charge": 0,
	"billing_type": "Contract",
	"due_date": null,
	"currency": "GBP",
	"subscriptions": [{
		"title": "DID Subscriptions",
		"type": 5,
		"charge_per_month": 0,
		"quantity": 1
	}]
}
Language
Click Try It! to start a request and see the response here!