Playlist Groups

Create a playlist group

Create a sidebar group to organize playlists into. Use the groupId field on PATCH /v1/playlists/{id} to move playlists into it.

post/v1/playlist-groups

Request body

emojistring

Unicode emoji character for the group

namestring required

Playlist group name

visibility'org' | 'personal'

Visibility: org (shared sidebar group for the entire organization) or personal (only visible to you)

Example request

{
  "emoji": "📁",
  "name": "Marketing",
  "visibility": "personal"
}

Response

Created

Example response

{
  "group": {
    "emoji": "📁",
    "id": "pg_abc123def456",
    "name": "Marketing",
    "visibility": "personal"
  }
}

Changes

No recorded changes to this endpoint across all 1 revision of this API.