action drchrono_insurances_list { label: "insurances_list" provider: drchrono method: GET path: "/api/insurances" encoding: json input: { type: "object" properties: { cursor: { type: "string" description: "The pagination cursor value." } page_size: { type: "integer" description: "Number of results to return per page." } payer_type: { type: "string" } term: { type: "string" } } required: ["payer_type"] additionalProperties: false } output: { type: "object" description: "Paginated Result" properties: { data: { type: "array" description: "result data" items: { type: "object" properties: { payer_id: { type: "string" } payer_name: { type: "string" } state: { type: "string" } } } } next: { type: "string" description: "Next Paginated page" } previous: { type: "string" description: "Previous paginated page" } } } }