action jumpseller_get_pages_json { label: "Retrieve all Pages." provider: jumpseller method: GET path: "/pages.json" encoding: json output: { type: "array" items: { type: "object" properties: { page: { type: "object" properties: { body: { type: "string" description: "Body of the Page" } categories: { type: "array" description: "Page categories to which the Page belongs to" items: { type: "object" properties: { id: { type: "integer" } name: { type: "string" } position: { type: "integer" } } } } id: { type: "integer" description: "Id of the Page" } image: { type: "object" description: "Image of the Page" properties: { id: { type: "integer" } url: { type: "string" } } } legal: { type: "boolean" description: "True if it is a legal page" } meta_description: { type: "string" description: "Meta description of the Page" } page_title: { type: "string" description: "Meta title of the Page" } permalink: { type: "string" description: "URL of the Page" } status: { type: "string" description: "Status of the Page" enum: ["public", "draft", "hidden"] } template: { type: "object" description: "Template of the Page" properties: { id: { type: "integer" } name: { type: "string" } } } title: { type: "string" description: "Title of the Page" } } } } } } }