action soundcloud_put_playlists_playlist_id { label: "Updates a playlist." provider: soundcloud method: PUT path: "/playlists/{playlist_id}" encoding: json input: { type: "object" properties: { playlist: { type: "object" properties: { description: { type: "string" description: "Description of the playlist" } sharing: { type: "string" description: "public or private" enum: ["public", "private"] } title: { type: "string" description: "Title of the playlist" } tracks: { type: "array" description: "List of tracks to add to playlist" items: { type: "object" required: ["id"] properties: { id: { type: "string" description: "SoundCloud track id" } } } } } } } } output: { type: "object" additionalProperties: true } }