action drchrono_consent_forms_read { label: "consent_forms_read" description: "Retrieve an existing patient consent form" provider: drchrono method: GET path: "/api/consent_forms/{id}" encoding: json input: { type: "object" properties: { doctor: { type: "integer" } id: { type: "string" } } required: ["id"] additionalProperties: false } output: { 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." } } } }