action drchrono_consent_forms_list { label: "consent_forms_list" description: "Retrieve or search patient consent forms" provider: drchrono method: GET path: "/api/consent_forms" 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: ["assign_by_default", "doctor", "is_mandatory", "title", "uri"] properties: { archived: { type: "boolean" } assign_by_default: { type: "boolean" description: "If true, consent form will always be automatically assigned to appointments" } created_at: { type: "string" } doctor: { type: "integer" } id: { type: "integer" } is_mandatory: { type: "boolean" description: "If true, consent form must be signed prior to appointment check in" } order: { type: "integer" description: "The order of consent forms that will show in management screen" } title: { type: "string" } updated_at: { type: "string" } uri: { type: "string" description: "Files are passed using `multipart/form-data` encoding, but returned as URLs." } } } } next: { type: "string" description: "Next Paginated page" } previous: { type: "string" description: "Previous paginated page" } } } }