DistributeApp LogoDistributeProject
DistributorUsersUser_idPlaylists

List user playlists

Lists playlists owned by the given user.

GET
/users/{user_id}/playlists

Authorization

BearerAuth
Authorization<token>

Type "Bearer" followed by a space and JWT token.

In: header

Path Parameters

user_id*string

User ID (UUID)

Response Body

application/json

application/json

application/json

curl -X GET "https://loading/api/users/string/playlists"
[
  {
    "created_at": "string",
    "folder_id": "string",
    "id": "string",
    "name": "string",
    "song_ids": [
      "string"
    ],
    "user": {
      "id": "string",
      "is_admin": true,
      "root_folder_id": "string",
      "username": "string"
    },
    "user_id": "string"
  }
]
{
  "error": "Validation failed"
}
{
  "error": "Validation failed"
}