action clever_get_district_admin { label: "getDistrictAdmin" description: "Returns a specific district admin" provider: clever method: GET path: "/district_admins/{id}" encoding: json input: { type: "object" properties: { id: { type: "string" } } required: ["id"] additionalProperties: false } output: { type: "object" properties: { data: { type: "object" properties: { district: { type: "string" } email: { type: "string" } id: { type: "string" } name: { type: "object" properties: { first: { type: "string" } last: { type: "string" } middle: { type: "string" } } } title: { type: "string" } } } } } }