About GetAPSummary
This API returns a summary of all Accounts Payable bills and approvals for your Bill.com account. This information can be used to analyze current outstanding bills and those bills in the approval process.
Example
Request
<API_URL_EndPoint>/GetAPSummary.json
data={}
Response
{
"response_status" : 0,
"response_message" : "Success",
"response_data" : {
"bills" : {
"overdueCount" : 1,
"overdueTotal" : 50.00,
"dueTodayCount" : 0,
"dueTodayTotal" : 0.00,
"due7DaysCount" : 0,
"due7DaysTotal" : 0.00,
"due7PlusDaysCount" : 1,
"due7PlusDaysTotal" : 10.00,
"allCount" : 2,
"allTotal" : 60.00
},
"approvals" : {
"overdueCount" : 2,
"overdueTotal" : 100.00,
"dueTodayCount" : 0,
"dueTodayTotal" : 0.00,
"due7DaysCount" : 0,
"due7DaysTotal" : 0.00,
"due7PlusDaysCount" : 0,
"due7PlusDaysTotal" : 0.00,
"allCount" : 2,
"allTotal" : 100.00
}
}
}
Resources