createPaymentSchedule
Create a monthly payment schedule for a fixed amount, for the authenticated user.
This field requires the Authorization header to be set.
Arguments
Returns
CreatePaymentScheduleCreate a monthly payment schedule for a fixed amount, for the authenticated user.
This field requires the Authorization header to be set.
Possible Errors
Allowed Viewers
Required Permissions
Can access customer queriesCan perform payments operations
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.
mutation CreatePaymentSchedule($input: PaymentScheduleInput!) {
createPaymentSchedule(input: $input) {
paymentSchedule {
...PaymentScheduleTypeFragment
}
}
}
Variables
{
"input": PaymentScheduleInput
}
Response
{
"data": {
"createPaymentSchedule": {
"paymentSchedule": PaymentScheduleType
}
}
}