action spotify_check_current_user_follows { label: "Check If User Follows Artists or Users\n" description: "Check to see if the current user is following one or more artists or other Spotify users.\n" provider: spotify method: GET path: "/me/following/contains" encoding: json input: { type: "object" properties: { ids: { type: "string" description: "A comma-separated list of the artist or the user [Spotify IDs](/documentation/web-api/#spotify-uris-and-ids) to check. For example: `ids=74ASZWbe4lXaubB36ztrGX,08td7MxkoHQkXnWAYD8d6Q`. A maximum of 50 IDs can be sent in one request.\n" } type: { type: "string" description: "The ID type: either `artist` or `user`.\n" enum: ["artist", "user"] } } required: ["ids", "type"] additionalProperties: false } output: { type: "object" additionalProperties: true } }