mirror of
https://github.com/navidrome/navidrome.git
synced 2025-07-21 02:41:48 +03:00
34 lines
948 B
YAML
34 lines
948 B
YAML
get:
|
|
summary: Retrieve an individual album
|
|
operationId: getAlbum
|
|
parameters:
|
|
- $ref: '../parameters/query/includeForAlbum.yml'
|
|
- name: albumId
|
|
in: path
|
|
description: The unique identifier of the album
|
|
required: true
|
|
schema:
|
|
type: string
|
|
responses:
|
|
'200':
|
|
description: An album object
|
|
content:
|
|
application/vnd.api+json:
|
|
schema:
|
|
type: object
|
|
required: [data]
|
|
properties:
|
|
data:
|
|
$ref: '../schemas/Album.yml'
|
|
included:
|
|
description: Included resources, as requested by the `include` query parameter
|
|
type: array
|
|
items:
|
|
$ref: '../schemas/IncludedResource.yml'
|
|
'403':
|
|
$ref: '../responses/NotAuthorized.yml'
|
|
'404':
|
|
$ref: '../responses/NotFound.yml'
|
|
'500':
|
|
$ref: '../responses/InternalServerError.yml'
|