Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
42 changes: 10 additions & 32 deletions api/swagger/swagger-v1.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -1084,7 +1084,7 @@ paths:
get:
tags:
- playlists
description: Gets a list of playlists by ID
description: Gets a list of playlists by ID, UPC, or permalink
operationId: Get Bulk Playlists
parameters:
- name: user_id
Expand All @@ -1101,6 +1101,15 @@ paths:
type: array
items:
type: string
- name: permalink
in: query
description: The permalink(s) of the playlist(s)
style: form
explode: true
schema:
type: array
items:
type: string
- name: upc
in: query
description: The UPC of the playlist(s)
Expand Down Expand Up @@ -1161,37 +1170,6 @@ paths:
'500':
description: Server error
content: {}
/playlists/by_permalink/{handle}/{slug}:
get:
tags:
- playlists
description: Get a playlist by handle and slug
operationId: Get Playlist By Handle and Slug
parameters:
- name: handle
in: path
description: playlist owner handle
required: true
schema:
type: string
- name: slug
in: path
description: playlist slug
required: true
schema:
type: string
- name: user_id
in: query
description: The user ID of the user making the request
schema:
type: string
responses:
'200':
description: Success
content:
application/json:
schema:
$ref: '#/components/schemas/playlist_response'
/playlists/search:
get:
tags:
Expand Down