createPaymentSchedule
Creates a new fixed payment schedule.
Arguments
Returns
CreatePaymentScheduleResponse!Returned when a customer creates a fixed payment schedule from their MyPage.
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.
mutation CreatePaymentSchedule($input: PaymentScheduleInput!) {
createPaymentSchedule(input: $input) {
... on CommonError {
...CommonErrorFragment
}
... on PaymentScheduleCreated {
...PaymentScheduleCreatedFragment
}
}
}
Variables
{
"input": PaymentScheduleInput
}
Response
{
"data": {
"createPaymentSchedule": CommonError
}
}