action clever_get_sections { label: "getSections" description: "Returns a list of sections" provider: clever method: GET path: "/sections" encoding: json input: { type: "object" properties: { ending_before: { type: "string" } limit: { type: "integer" } starting_after: { type: "string" } where: { type: "string" } } additionalProperties: false } output: { type: "object" properties: { data: { type: "array" items: { type: "object" properties: { data: { type: "object" properties: { course_description: { type: "string" } course_name: { type: "string" } course_number: { type: "string" } created: { type: "string" format: "datetime" } district: { type: "string" } grade: { type: "string" enum: ["1", "2", "3", "4", "5", "6", "7", "8", "9", "10", "11", "12", "PreKindergarten", "Kindergarten", "PostGraduate", "Other"] } id: { type: "string" } last_modified: { type: "string" format: "datetime" } name: { type: "string" } period: { type: "string" } school: { type: "string" } section_number: { type: "string" } sis_id: { type: "string" } students: { type: "array" items: { type: "string" } } subject: { type: "string" enum: ["english/language arts", "math", "science", "social studies", "language", "homeroom/advisory", "interventions/online learning", "technology and engineering", "PE and health", "arts and music", "other"] } teacher: { type: "string" } teachers: { type: "array" items: { type: "string" } } term: { type: "object" properties: { end_date: { type: "string" format: "datetime" } name: { type: "string" } start_date: { type: "string" format: "datetime" } } } } } } } } } } }