Determines the schedule for a Recurring Order to occur on a specific day of each month.

- Orders will be created even if the specified day is a weekend or holiday.
- To place orders on different dates within the same month (for example, the 1st and 15th), create separate [Recurring Orders](ctp:api:type:RecurringOrder)—each with its own schedule.
interface DayOfMonthScheduleDraft {
    day: number;
    type: "dayOfMonth";
}

Hierarchy (View Summary)

Properties

Properties

day: number

The day of the month when the Recurring Order should be created. If the value is greater than the number of days in a given month, the order will be created on the last day of the month.

type: "dayOfMonth"