Skip to main content
POST
/
playlists
/
{id}
/
remove-editor
Remove an editor from a collaborative playlist
curl --request POST \
  --url https://open.beatpass.ca/api/v1/playlists/{id}/remove-editor \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "user_id": 2
}'
{
  "status": "success"
}

Authorizations

Authorization
string
header
required

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

Path Parameters

id
integer
required

Playlist ID

Example:

1

Body

application/json
user_id
integer

ID of user to remove

Example:

2

Response

Editor removed successfully

status
string
Example:

"success"

Last modified on November 29, 2025