livePaymentAdequacy
Get up to date payment adequacy data.
Arguments
Returns
LivePaymentAdequacyQueryPossible Errors
Allowed Viewers
Query Complexity
1Examples
The example data in the variables and responses below are autogenerated values designed to resemble real inputs. They do not represent actual customer data, and in some cases may require additional validation.
query LivePaymentAdequacy(
$accountNumber: String!,
$ledgerNumber: String,
$policyId: String
) {
livePaymentAdequacy(
accountNumber: $accountNumber,
ledgerNumber: $ledgerNumber,
policyId: $policyId
) {
currentBalance
estimatedConsumption {
...ConsumptionBreakdownFragment
}
recommendedPayment {
...PaymentBreakdownFragment
}
reviewedOn
targetBalance
}
}
Variables
{
"accountNumber": "A-967BAB79",
"ledgerNumber": "black-hit-town-cut-minute",
"policyId": "65915646"
}
Response
{
"data": {
"livePaymentAdequacy": {
"currentBalance": 96,
"estimatedConsumption": [ConsumptionBreakdown],
"recommendedPayment": PaymentBreakdown,
"reviewedOn": "2020-03-29",
"targetBalance": 69
}
}
}