action clever_get_teachers_for_district { label: "getTeachersForDistrict" description: "Returns the teachers for a district" provider: clever method: GET path: "/districts/{id}/teachers" encoding: json input: { type: "object" properties: { ending_before: { type: "string" } id: { type: "string" } limit: { type: "integer" } starting_after: { type: "string" } where: { type: "string" } } required: ["id"] additionalProperties: false } output: { type: "object" properties: { data: { type: "array" items: { type: "object" properties: { data: { type: "object" properties: { created: { type: "string" format: "datetime" } credentials: { type: "object" properties: { district_username: { type: "string" } } } district: { type: "string" } email: { type: "string" } id: { type: "string" } last_modified: { type: "string" format: "datetime" } name: { type: "object" properties: { first: { type: "string" } last: { type: "string" } middle: { type: "string" } } } school: { type: "string" } schools: { type: "array" items: { type: "string" } } sis_id: { type: "string" } state_id: { type: "string" } teacher_number: { type: "string" } title: { type: "string" } } } } } } } } }