action clever_get_school_admins { label: "getSchoolAdmins" description: "Returns a list of school admins" provider: clever method: GET path: "/school_admins" 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: { credentials: { type: "object" properties: { district_username: { type: "string" } } } district: { type: "string" } email: { type: "string" } id: { type: "string" } name: { type: "object" properties: { first: { type: "string" } last: { type: "string" } middle: { type: "string" } } } schools: { type: "array" items: { type: "string" } } staff_id: { type: "string" } title: { type: "string" } } } } } } } } }