Update playlist
PATCH
/manage/playlists/:playlistIdUpdate a playlist. Only the fields you send are updated.
| Auth | Login required |
|---|
Path parameters
playlistIdstringrequiredPlaylist ID or slug.
Request body
titlestringPlaylist title; required on create.
descriptionstringDescription.
slugstringURL slug; must be unique.
thumbnailUrlstringThumbnail image URL.
submissionEnabledbooleanWhether signed-in users can submit events to this playlist.
submissionMessagestringMessage shown in the submission section (up to 1000 characters). Send an empty string or null to clear it.
languagesobjectPer-language name / description / submissionMessage (e.g. `{ "en": { "submissionMessage": "..." } }`).
Request
curl https://api.4s.link/manage/playlists/PLAYLIST_ID \-X PATCH \-H "Authorization: Bearer 4s_at_..." \-H "Content-Type: application/json" \-d '{"title": "Summer Events 2026"}'
Example response
{"id": "p1a2b3c4-...","slug": "summer-events","title": "Summer Events","description": "...","thumbnailUrl": "https://.../thumb.png","communityId": "c1a2b3c4-...","itemCount": 12}