action jumpseller_post_customer_categories_json { label: "Create a new CustomerCategory." provider: jumpseller method: POST path: "/customer_categories.json" encoding: json output: { 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" } } } } } }