action spotify_get_list_users_playlists { label: "Get User's Playlists\n" description: "Get a list of the playlists owned or followed by a Spotify user.\n" provider: spotify method: GET path: "/users/{user_id}/playlists" encoding: json input: { type: "object" properties: { offset: { type: "integer" description: "The index of the first playlist to return. Default:\n0 (the first object). Maximum offset: 100.000\\. Use with `limit` to get the\nnext set of playlists.\n" } } additionalProperties: false } output: { type: "object" additionalProperties: true } }