action medium_get_article_article_id_markdown { label: "Get Article's Markdown" description: "Returns the markdown of an article/story from Medium, for the corresponding `article_id`\n" provider: medium method: GET path: "/article/{article_id}/markdown" encoding: json input: { type: "object" properties: { article_id: { type: "string" } } required: ["article_id"] additionalProperties: false } output: { type: "object" properties: { markdown: { type: "string" } } } }