action clever_get_district_for_student_contact { label: "getDistrictForStudentContact" description: "Returns the district for a student contact" provider: clever method: GET path: "/contacts/{id}/district" encoding: json input: { type: "object" properties: { id: { type: "string" } } required: ["id"] additionalProperties: false } output: { type: "object" properties: { data: { type: "object" properties: { id: { type: "string" } mdr_number: { type: "string" } name: { type: "string" } } } } } }