action jumpseller_get_categories_json { label: "Retrieve all Categories." provider: jumpseller method: GET path: "/categories.json" encoding: json output: { type: "object" properties: { category: { type: "object" properties: { id: { type: "integer" format: "int32" description: "Unique identifier of the Category" } name: { type: "string" description: "Name of the Category" } parent_id: { type: "integer" format: "int32" description: "Unique identifier of the Parent Category" } permalink: { type: "string" description: "Category unique URL path" } } } } } }