action drchrono_custom_appointment_fields_list { label: "custom_appointment_fields_list" description: "Retrieve or search custom appointment fields" provider: drchrono method: GET path: "/api/custom_appointment_fields" 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" 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" } } } } next: { type: "string" description: "Next Paginated page" } previous: { type: "string" description: "Previous paginated page" } } } }