action medium_get_article_article_id_responses { label: "Get Article Responses" description: "Returns a list of responses (`response_ids`, same as `article_ids`) for a given article (`article_id`)\nNote: To see the content of the response, use the \"Get Article's Content\" endpoint\n" provider: medium method: GET path: "/article/{article_id}/responses" encoding: json input: { type: "object" properties: { article_id: { type: "string" } } required: ["article_id"] additionalProperties: false } output: { type: "object" properties: { id: { type: "string" } responses: { type: "array" items: { type: "string" } } } } }