API Docs / Schemas / SaveRecurringTaskScheduleRequest

SaveRecurringTaskScheduleRequest

Create or replace a schedule on a recurring task. On PUT the client list is the schedule's
full membership: listed clients get this schedule (moving here from another schedule if they
had one), clients omitted revert to whichever schedule they belong to otherwise. An empty
list is legal - a schedule can exist without clients. For the default schedule the list must
be empty; only its dates can change.

Properties

Name Type Description
namestring

Optional user label to tell schedules apart; shown instead of nothing when two schedules
have similar dates.

Optional user label to tell schedules apart; shown instead of nothing when two schedules
have similar dates.

clientCodesarray of string

The clients this schedule applies to - the complete membership, possibly empty.

The clients this schedule applies to - the complete membership, possibly empty.

scheduleScheduleConfigDto

JSON Example

{
  "name": "string",
  "clientCodes": [
    "string"
  ],
  "schedule": {
    "basis": "...",
    "recurrence": "...",
    "start": "...",
    "due": "...",
    "statutory": "..."
  }
}

Used By Operations