action avaza_schedule_series_get { label: "Gets list of Schedule Series" description: "Schedule Series represents a strip of time assigned to a user over a date range, for a certain number of hours per day. They can be for Leave or for project work Bookings." provider: avaza method: GET path: "/api/ScheduleSeries" encoding: json input: { type: "object" properties: { CompanyID: { type: "string" } LeaveTypeID: { type: "string" } ProjectID: { type: "string" } ScheduleEndDateFrom: { type: "string" } ScheduleEndDateTo: { type: "string" } ScheduleStartDateFrom: { type: "string" } ScheduleStartDateTo: { type: "string" } Sort: { type: "string" } TimeSheetCategoryID: { type: "string" } TimeSheetCategoryName: { type: "string" } UpdatedAfter: { type: "string" } UserEmail: { type: "string" } UserID: { type: "string" } pageNumber: { type: "string" } pageSize: { type: "string" } } additionalProperties: false } output: { type: "object" additionalProperties: true } }