action drchrono_custom_appointment_fields_read { label: "custom_appointment_fields_read" description: "Retrieve an existing custom appointment field" provider: drchrono method: GET path: "/api/custom_appointment_fields/{id}" encoding: json input: { type: "object" properties: { doctor: { type: "integer" } id: { type: "string" } } required: ["id"] additionalProperties: false } output: { type: "object" properties: { archived: { type: "boolean" description: "Indicates that the object has been soft-deleted and should not be used" } created_at: { type: "string" } doctor: { type: "string" } field_desc: { type: "string" description: "Description of the custom field" } field_name: { type: "string" } id: { type: "integer" } order: { type: "integer" description: "displayed order in patient's demographic page" } updated_at: { type: "string" } } } }