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}/accept-invite \
--header 'Authorization: Bearer <token>'{
"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}/accept-invite \
--header 'Authorization: Bearer <token>'{
"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.
Playlist ID
1
Invitation accepted successfully
"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?