Skip to main content
POST
/
playlists
/
{id}
/
tracks
/
remove
Remove one or more tracks from a user's playlist
curl --request POST \
  --url https://open.beatpass.ca/api/v1/playlists/{id}/tracks/remove \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "ids": [
    1
  ]
}
'
{
  "status": "success",
  "playlist": {
    "id": 123,
    "name": "Some Playlist",
    "public": true,
    "collaborative": false,
    "image": "https://example.com/image1.jpg",
    "description": "<string>"
  }
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

id
integer
required

ID of the playlist

Body

application/json
ids
integer[]

Array of track ID's to remove from this playlist

Example:
[1]

Response

Response body contains a playlist object in JSON format.

status
string
Example:

"success"

playlist
object
Last modified on November 29, 2025