action drchrono_custom_insurance_plan_names_read { label: "custom_insurance_plan_names_read" description: "Retrieve an existing custom insurance plan name" provider: drchrono method: GET path: "/api/custom_insurance_plan_names/{id}" encoding: json input: { type: "object" properties: { doctor: { type: "integer" } id: { type: "string" } name: { type: "string" } since: { type: "string" } user: { type: "integer" } } required: ["id"] additionalProperties: false } output: { type: "object" properties: { archived: { type: "boolean" } created_at: { type: "string" } doctor: { type: "string" description: "List custom appointment fields defined by the doctor with the given ID" } id: { type: "integer" } insurance_plan_name: { type: "string" description: "Custom name" } updated_at: { type: "string" } user: { type: "string" description: "User who created the custom insurance plan name" } } } }