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]
Response body contains a playlist object in JSON format.
"success"
Show child attributes
"Some Playlist"
Whether this playlist is public
true
Whether this playlist is collaborative
false
Artwork image for playlist, usually 300x300px in size
"https://example.com/image1.jpg"
description for the playlist
Was this page helpful?