action medium_get_article_article_id_fans { label: "Get Article Fans" description: "Returns a list of `user_ids` of the people who clapped on the article (a.k.a `voters`).\n" provider: medium method: GET path: "/article/{article_id}/fans" encoding: json input: { type: "object" properties: { article_id: { type: "string" } } required: ["article_id"] additionalProperties: false } output: { type: "object" properties: { article_id: { type: "string" } count: { type: "integer" format: "int32" } voters: { type: "array" items: { type: "string" } } } } }