action clever_get_contact { label: "getContact" description: "Returns a specific student contact" provider: clever method: GET path: "/contacts/{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: "string" } phone: { type: "string" } phone_type: { type: "string" } relationship: { type: "string" } sis_id: { type: "string" } student: { type: "string" } type: { type: "string" } } } } } }