Skip to main content

Arguments

input : PaymentScheduleInput! required

Returns

CreatePaymentSchedule

Create a monthly payment schedule for a fixed amount, for the authenticated user.

This field requires the Authorization header to be set.

Allowed Viewers

Customer Partner User Third party

Required Permissions

Can access customer queries
OR Can perform payments operations

Query Complexity

1

Examples

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

mutation CreatePaymentSchedule($input: PaymentScheduleInput!) { createPaymentSchedule(input: $input) { paymentSchedule { ...PaymentScheduleTypeFragment } } }

Variables

{ "input": PaymentScheduleInput }

Response

{ "data": { "createPaymentSchedule": { "paymentSchedule": PaymentScheduleType } } }