action core_get_article_history_by_core_id { label: "Get article history by CORE ID" description: "Method accepts a single CORE ID and returns a list of all historical versions of the article, which are stored in CORE database. The results are ordered from the newest one to the oldest one." provider: core method: GET path: "/articles/get/{coreId}/history" encoding: json input: { type: "object" properties: { coreId: { type: "string" } page: { type: "string" } pageSize: { type: "string" } } required: ["coreId"] additionalProperties: false } output: { type: "object" additionalProperties: true } }