action medium_get_list_list_id_responses { label: "Get List Responses" description: "Returns an array of `response_ids` of the comments (same as `article_ids`) on the given Medium List.\n" provider: medium method: GET path: "/list/{list_id}/responses" encoding: json input: { type: "object" properties: { list_id: { type: "string" } } required: ["list_id"] additionalProperties: false } output: { type: "object" properties: { id: { type: "string" } responses: { type: "array" items: { type: "string" } } } } }