action instagram_get_users_user_id_followed_by { label: "Get the list of users this user is followed by." description: "Get the list of users this user is followed by. To get users followed by the owner of the access token, you\ncan use **self** instead of the `user-id`.\n" provider: instagram method: GET path: "/users/{user-id}/followed-by" encoding: json input: { type: "object" properties: { "user-id": { type: "string" } } required: ["user-id"] additionalProperties: false } output: { type: "object" additionalProperties: true } }