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 |
|---|---|---|
| name | string | Optional user label to tell schedules apart; shown instead of nothing when two schedules |
Optional user label to tell schedules apart; shown instead of nothing when two schedules | ||
| clientCodes | array of string | The clients this schedule applies to - the complete membership, possibly empty. |
The clients this schedule applies to - the complete membership, possibly empty. | ||
| schedule | ScheduleConfigDto | |
JSON Example
{
"name": "string",
"clientCodes": [
"string"
],
"schedule": {
"basis": "...",
"recurrence": "...",
"start": "...",
"due": "...",
"statutory": "..."
}
}