action jumpseller_get_customer_categories_json { label: "Retrieve all Customer Categories." provider: jumpseller method: GET path: "/customer_categories.json" encoding: json output: { type: "array" items: { type: "object" properties: { category: { type: "object" properties: { code: { type: "string" description: "Code of the CustomerCategory" } id: { type: "integer" format: "int32" description: "Unique identifier of the CustomerCategory" } name: { type: "string" description: "Name of the CustomerCategory" } } } } } } }