action clever_get_contacts_for_student { label: "getContactsForStudent" description: "Returns the contacts for a student" provider: clever method: GET path: "/students/{id}/contacts" encoding: json input: { type: "object" properties: { id: { type: "string" } limit: { type: "integer" } } required: ["id"] additionalProperties: false } output: { type: "object" properties: { data: { type: "array" items: { 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" } } } } } } }