action avaza_schedule_assignment_get { label: "Gets list of Schedule Assignments." description: "Schedule assignments are per-day, and link to a parent Schedule Series." provider: avaza method: GET path: "/api/ScheduleAssignment" encoding: json input: { type: "object" properties: { ScheduleDateFrom: { type: "string" } ScheduleDateTo: { type: "string" } ScheduleSeriesID: { type: "string" } Sort: { type: "string" } UpdatedAfter: { type: "string" } UserEmail: { type: "string" } UserID: { type: "string" } pageNumber: { type: "string" } pageSize: { type: "string" } } additionalProperties: false } output: { type: "object" additionalProperties: true } }