action drchrono_inventory_categories_list { label: "inventory_categories_list" description: "Retrieve or search inventory categories" provider: drchrono method: GET path: "/api/inventory_categories" 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." } since: { type: "string" } } additionalProperties: false } output: { type: "object" description: "Paginated Result" properties: { data: { type: "array" description: "result data" items: { type: "object" properties: { archived: { type: "boolean" description: "If the category is archived or not" } category_type: { type: "string" description: "Can be one of `\"vaccine\"`, `\"product\"` or `\"service\"`" enum: ["vaccine", "product", "service"] } created_at: { type: "string" } doctor: { type: "string" } id: { type: "integer" } name: { type: "string" description: "Name of the inventory category" } updated_at: { type: "string" } } } } next: { type: "string" description: "Next Paginated page" } previous: { type: "string" description: "Previous paginated page" } } } }