Update playlist

PATCH/manage/playlists/:playlistId

Update a playlist. Only the fields you send are updated.

AuthLogin required

Path parameters

playlistIdstringrequired

Playlist ID or slug.

Request body

titlestring

Playlist title; required on create.

descriptionstring

Description.

slugstring

URL slug; must be unique.

thumbnailUrlstring

Thumbnail image URL.

submissionEnabledboolean

Whether signed-in users can submit events to this playlist.

submissionMessagestring

Message shown in the submission section (up to 1000 characters). Send an empty string or null to clear it.

languagesobject

Per-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
}