soundcloud-api-ts - v1.9.0
    Preparing search index...

    Interface CreatePlaylistParams

    Parameters for creating a new playlist via createPlaylist.

    interface CreatePlaylistParams {
        description?: string;
        ean?: string;
        genre?: string;
        label_name?: string;
        license?: string;
        permalink?: string;
        purchase_title?: string;
        purchase_url?: string;
        release?: string;
        release_date?: string;
        set_type?: "album" | "playlist";
        sharing?: "public" | "private";
        tag_list?: string;
        title: string;
        tracks?: { urn: string }[];
    }
    Index

    Properties

    description?: string

    Playlist description

    ean?: string

    European Article Number (barcode) for the release

    genre?: string

    Music genre

    label_name?: string

    Record label name

    license?: string

    Creative Commons license type

    permalink?: string

    Custom permalink slug

    purchase_title?: string

    Label for the purchase/buy button

    purchase_url?: string

    External purchase URL

    release?: string

    Release identifier string

    release_date?: string

    Release date in ISO 8601 format

    set_type?: "album" | "playlist"

    Set type: "album" or "playlist"

    sharing?: "public" | "private"

    Visibility: "public" or "private"

    tag_list?: string

    Space-separated tags

    title: string

    Playlist title (required)

    tracks?: { urn: string }[]

    Tracks to include, specified by URN (e.g. [{ urn: "soundcloud:tracks:123" }])