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

    Interface UpdateTrackParams

    Parameters for updating a track's metadata via updateTrack.

    interface UpdateTrackParams {
        bpm?: number;
        description?: string;
        downloadable?: boolean;
        genre?: string;
        isrc?: string;
        key_signature?: string;
        label_name?: string;
        license?: string;
        purchase_title?: string;
        purchase_url?: string;
        release?: string;
        release_day?: number;
        release_month?: number;
        release_year?: number;
        sharing?: "public" | "private";
        tag_list?: string;
        title?: string;
    }
    Index

    Properties

    bpm?: number

    Beats per minute

    description?: string

    New track description

    downloadable?: boolean

    Whether the track is downloadable

    genre?: string

    Music genre (e.g. "Electronic", "Hip-hop & Rap")

    isrc?: string

    International Standard Recording Code

    key_signature?: string

    Musical key signature (e.g. "C major")

    label_name?: string

    Record label name

    license?: string

    Creative Commons license type (e.g. "all-rights-reserved", "cc-by")

    purchase_title?: string

    Label for the purchase/buy button

    purchase_url?: string

    External purchase URL

    release?: string

    Release identifier string

    release_day?: number

    Day of the release date (1-31)

    release_month?: number

    Month of the release date (1-12)

    release_year?: number

    Year of the release date

    sharing?: "public" | "private"

    Visibility: "public" or "private"

    tag_list?: string

    Space-separated tags (tags with spaces should be wrapped in quotes)

    title?: string

    New track title