action medium_get_publication_publication_id { label: "Get Publication Info" description: "Returns the publication related information such as *Publication name, Tagline, Description, Tags, Followers Count, Twitter username, Instagram username, Facebook Page name, etc …*\n\n**Note:** If you don't know the `publication_id`, you can get it from any article published by it. Use endpoint \"/article/{article_id}\" to retrieve the `publication_id`.\n" provider: medium method: GET path: "/publication/{publication_id}" encoding: json input: { type: "object" properties: { publication_id: { type: "string" } } required: ["publication_id"] additionalProperties: false } output: { type: "object" properties: { creator: { type: "string" } description: { type: "string" } editors: { type: "array" items: { type: "string" } } facebook_pagename: { type: "string" } followers: { type: "integer" format: "int32" } id: { type: "string" } instagram_username: { type: "string" } name: { type: "string" } slug: { type: "string" } tagline: { type: "string" } tags: { type: "array" items: { type: "string" } } twitter_username: { type: "string" } url: { type: "string" } } } }