action spotify_get_a_list_of_current_users_playlists { label: "Get Current User's Playlists\n" description: "Get a list of the playlists owned or followed by the current Spotify\nuser.\n" provider: spotify method: GET path: "/me/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 } }