EndOfMonthSchedule
Payitoff API: EndOfMonthSchedule
Schema
An EndOfMonthSchedule
object can be used when creating or editing a PaymentSeries
to define the recurring schedule you want an automated PaymentSeries
to follow.
Schema Definition
Properties in bold are required.
Property | Type | Format | Description |
---|---|---|---|
end_date | string | format | An ISO Date string indicating when this PaymentSeries should end. |
end_of_month | boolean | Can only be true to indicate you wish the payment to always occur on the last day of the month. | |
start_date | string | date | An ISO Date string indicating when this PaymentSeries should begin. |
Example
{
"end_date": "2022-09-01",
"end_of_month": true,
"start_date": "2021-09-01"
}
Updated 12 months ago