Skip to main content
POST
/
saved-playlists
Create a saved playlist
curl --request POST \
  --url http://localhost:6063/saved-playlists \
  --header 'Content-Type: application/json' \
  --data '
{
  "name": "<string>",
  "description": "<string>",
  "image": "<string>",
  "folder_id": "<string>",
  "track_ids": [
    "<string>"
  ]
}
'
{
  "id": "<string>",
  "name": "<string>",
  "description": "<string>",
  "image": "<string>",
  "folder_id": "<string>",
  "track_count": 123,
  "created_at": "2023-11-07T05:31:56Z",
  "updated_at": "2023-11-07T05:31:56Z"
}

Documentation Index

Fetch the complete documentation index at: https://rockboxzig.mintlify.app/llms.txt

Use this file to discover all available pages before exploring further.

Body

application/json
name
string
required
description
string
image
string
folder_id
string
track_ids
string[]

Response

Created

id
string
name
string
description
string | null
image
string | null
folder_id
string | null
track_count
integer<int32>
created_at
string<date-time>
updated_at
string<date-time>