isAutopayEnabled
Returns whether autopay is enabled for the given account.
Arguments
Returns
AutoPayOutputTypePossible 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 IsAutopayEnabled(
$accountNumber: String!,
$considerFutureSchedule: Boolean
) {
isAutopayEnabled(
accountNumber: $accountNumber,
considerFutureSchedule: $considerFutureSchedule
) {
isEnabled
status
}
}
Variables
{
"accountNumber": "A-F9839058",
"considerFutureSchedule": true
}
Response
{
"data": {
"isAutopayEnabled": {
"isEnabled": true,
"status": "ON"
}
}
}