action drchrono_reminder_profiles_list { label: "reminder_profiles_list" description: "Retrieve or search reminder profiles" provider: drchrono method: GET path: "/api/reminder_profiles" encoding: json input: { type: "object" properties: { cursor: { type: "string" description: "The pagination cursor value." } doctor: { type: "integer" } page_size: { type: "integer" description: "Number of results to return per page." } } additionalProperties: false } output: { type: "object" description: "Paginated Result" properties: { data: { type: "array" description: "result data" items: { 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"] } } } } } } } next: { type: "string" description: "Next Paginated page" } previous: { type: "string" description: "Previous paginated page" } } } }