action jumpseller_get_pages_id_json { label: "Retrieve a single Page by id." provider: jumpseller method: GET path: "/pages/{id}.json" encoding: json input: { type: "object" properties: { id: { type: "integer" format: "int32" } } required: ["id"] additionalProperties: false } output: { 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" } } } } } }