Browse the Help Center for platform guides or API & Developers for integration docs.
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>"
}
}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>"
}
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
ID of the playlist
Array of track ID's to remove from this playlist
[1]
Was this page helpful?