action soundcloud_post_playlists { label: "Creates a playlist." provider: soundcloud method: POST path: "/playlists" 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 } }