action medium_get_user_user_id_following { label: "Get User Following" description: "Returns the list of `user_ids` of the user's followings.\n\n**Note:** Currently, this list does not contain the `publication_ids` of the publications that the user is following.\n" provider: medium method: GET path: "/user/{user_id}/following" encoding: json input: { type: "object" properties: { count: { type: "integer" } user_id: { type: "string" } } required: ["user_id"] additionalProperties: false } output: { type: "object" properties: { following: { type: "array" items: { type: "string" } } id: { type: "string" } } } }