paymentPlanDetails
Payment plan details for a given account number.
Arguments
The account number to retrieve payment plan details for.
Returns
[PaymentPlanDetails]Possible 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 PaymentPlanDetails($accountNumber: String!) {
paymentPlanDetails(accountNumber: $accountNumber) {
paymentFrequency
paymentFrequencyMultiplier
paymentPlanId
paymentPlanStatus
totalAmountPaid
totalAmountRemaining
totalPlanValue
}
}
Variables
{
"accountNumber": "A-1FB79B7C"
}
Response
{
"data": {
"paymentPlanDetails": [
{
"paymentFrequency": "talk-shoulder-now-himself-exist",
"paymentFrequencyMultiplier": 14,
"paymentPlanId": "13241444",
"paymentPlanStatus": "brother-section-nation-who-set",
"totalAmountPaid": 97158881,
"totalAmountRemaining": 18,
"totalPlanValue": 10
}
]
}
}