action medium_get_publication_publication_id_articles { label: "Get Publication Articles" description: "Returns the list of `articles_ids`, of the latest 25 articles, posted in that publication.\n" provider: medium method: GET path: "/publication/{publication_id}/articles" encoding: json input: { type: "object" properties: { from: { type: "string" } publication_id: { type: "string" } } required: ["publication_id"] additionalProperties: false } output: { type: "object" properties: { publication_articles: { type: "array" items: { type: "string" } } } } }