action medium_get_publication_id_for_publication_slug { label: "Get Publication ID" description: "Returns the unique `publication_id` for the given `publication_slug`.\n\n**Note:** You can find the `publication_slug` from the publication's homepage URL.\n- medium.com/**publication_slug**\n" provider: medium method: GET path: "/publication/id_for/{publication_slug}" encoding: json input: { type: "object" properties: { publication_slug: { type: "string" } } required: ["publication_slug"] additionalProperties: false } output: { type: "object" properties: { publication_id: { type: "string" description: "Unique hash id of the publication." } publication_slug: { type: "string" description: "Same publication slug that you passed in the path parameters." } } } }