Skip to main content
PATCH
/
api
/
v1
/
audio
/
api
/
key
/
playlist
PATCH /api/v1/audio/api/key/playlist
curl --request PATCH \
  --url https://api.scoot.app/api/v1/audio/api/key/playlist \
  --header 'Content-Type: application/json' \
  --header 'customer-api-key: <api-key>' \
  --data '{
  "playlistId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "name": "<string>",
  "type": "FREE_PLAYLIST",
  "qty": 123,
  "duration": 123,
  "available": true
}'
{
  "playlistId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "name": "<string>",
  "type": "FREE_PLAYLIST",
  "qty": 123,
  "duration": 123,
  "available": true
}
Updates the configuration and settings of an existing audio playlist.

Authorizations

customer-api-key
string
header
required

Body

application/json
playlistId
string<uuid>
name
string
type
enum<string>
Available options:
FREE_PLAYLIST,
PAID_PLAYLIST
qty
integer
duration
integer
available
boolean

Response

200 - application/json

OK

playlistId
string<uuid>
name
string
type
enum<string>
Available options:
FREE_PLAYLIST,
PAID_PLAYLIST
qty
integer
duration
integer
available
boolean
I