switchAccountToVariablePaymentSchedule
Switch account to variable payment schedule. Current schedule type will be preserved.
Arguments
Input fields for switching to a variable payment schedule.
Returns
SwitchAccountToVariablePaymentScheduleSwitch account to variable payment schedule. Current schedule type will be preserved.
Possible Errors
Allowed Viewers
Required Permissions
Can manage payment schedulesQuery 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.
mutation SwitchAccountToVariablePaymentSchedule($input: SwitchAccountToVariablePaymentScheduleInput!) {
switchAccountToVariablePaymentSchedule(input: $input) {
schedule {
...PaymentScheduleTypeFragment
}
}
}
Variables
{
"input": SwitchAccountToVariablePaymentScheduleInput
}
Response
{
"data": {
"switchAccountToVariablePaymentSchedule": {
"schedule": PaymentScheduleType
}
}
}