Skip to content
DocumentationAPI Reference

Save Episodes for Current User

Me.Episodes.Save(EpisodeSaveParamsparameters, CancellationTokencancellationToken = default)
PUT/me/episodes

Save one or more episodes to the current user's library.
This API endpoint is in beta and could change without warning. Please share any feedback that you have, or issues that you discover, in our developer community forum.

ParametersExpand Collapse
EpisodeSaveParams parameters
required IReadOnlyList<string> ids

A JSON array of the Spotify IDs.
A maximum of 50 items can be specified in one request. Note: if the ids parameter is present in the query string, any IDs listed here in the body will be ignored.

Boolean published

The playlist's public/private status (if it should be added to the user's profile or not): true the playlist will be public, false the playlist will be private, null the playlist status is not relevant. For more about public/private status, see Working with Playlists

Save Episodes for Current User

EpisodeSaveParams parameters = new()
{
    Ids =
    [
        "string"
    ],
};

await client.Me.Episodes.Save(parameters);
Returns Examples