action drchrono_reminder_profiles_read { label: "reminder_profiles_read" description: "Retrieve an existing reminder profile" provider: drchrono method: GET path: "/api/reminder_profiles/{id}" encoding: json input: { type: "object" properties: { doctor: { type: "integer" } id: { type: "string" } } required: ["id"] additionalProperties: false } output: { type: "object" required: ["doctor", "reminders"] properties: { doctor: { type: "integer" description: "Doctor who created the profile. Other doctors in the practice group may have access to their profiles" } id: { type: "integer" } name: { type: "string" } reminders: { type: "array" description: "Reminders set in the profile" items: { type: "object" description: "Array of reminders" properties: { amount: { type: "integer" } type: { type: "string" description: "One of `\"email\"`, `\"sms\"` or `\"auto_call\"`" enum: ["email", "sms", "phone", "auto_call"] } unit: { type: "string" description: "One of `\"email\"`, `\"sms\"` or `\"auto_call\"`" enum: ["minutes", "hours", "days", "weeks"] } } } } } } }