action spotify_check_if_user_follows_playlist { label: "Check if Users Follow Playlist\n" description: "Check to see if one or more Spotify users are following a specified playlist.\n" provider: spotify method: GET path: "/playlists/{playlist_id}/followers/contains" encoding: json input: { type: "object" properties: { ids: { type: "string" description: "A comma-separated list of [Spotify User IDs](/documentation/web-api/#spotify-uris-and-ids) ; the ids of the users that you want to check to see if they follow the playlist. Maximum: 5 ids.\n" } } required: ["ids"] additionalProperties: false } output: { type: "object" additionalProperties: true } }