Skip to main content
POST
/
v1
/
playlist-groups
Create a playlist group
curl --request POST \
  --url https://api.tella.com/v1/playlist-groups \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "name": "Marketing",
  "emoji": "📁",
  "visibility": "personal"
}
'
{
  "group": {
    "emoji": "📁",
    "id": "pg_abc123def456",
    "name": "Marketing",
    "visibility": "personal"
  }
}

Authorizations

Authorization
string
header
required

API key obtained from your Tella account settings

Body

application/json

Request to create a playlist group

name
string
required

Playlist group name

Required string length: 1 - 255
Example:

"Marketing"

emoji
string

Unicode emoji character for the group

Maximum string length: 10
Example:

"📁"

visibility
enum<string>

Where the group lives. Default: personal

Available options:
org,
personal
Example:

"personal"

Response

Created

A single playlist group

group
object
required

A sidebar group that playlists can be organized into. Personal groups are only visible to you; org groups are shared with the whole workspace.