mirror of
https://github.com/navidrome/navidrome.git
synced 2025-07-21 02:41:48 +03:00
29 lines
718 B
YAML
29 lines
718 B
YAML
get:
|
|
summary: Retrieve an individual artist
|
|
operationId: getArtist
|
|
parameters:
|
|
- $ref: '../parameters/query/include.yml'
|
|
- name: artistId
|
|
in: path
|
|
description: The unique identifier of the artist
|
|
required: true
|
|
schema:
|
|
type: string
|
|
responses:
|
|
'200':
|
|
description: An artist object
|
|
content:
|
|
application/vnd.api+json:
|
|
schema:
|
|
type: object
|
|
required: [data]
|
|
properties:
|
|
data:
|
|
$ref: '../schemas/Artist.yml'
|
|
'403':
|
|
$ref: '../responses/NotAuthorized.yml'
|
|
'404':
|
|
$ref: '../responses/NotFound.yml'
|
|
'500':
|
|
$ref: '../responses/InternalServerError.yml'
|