action core_get_article_pdf_by_core_id { label: "Get fulltext PDF by CORE ID" description: "Method will retrieve an article based on given CORE ID." provider: core method: GET path: "/articles/get/{coreId}/download/pdf" encoding: json input: { type: "object" properties: { coreId: { type: "string" } } required: ["coreId"] additionalProperties: false } output: { type: "object" additionalProperties: true } }