mirror of
https://github.com/navidrome/navidrome.git
synced 2026-08-01 07:21:17 +00:00
29 lines
720 B
YAML
29 lines
720 B
YAML
get:
|
|
summary: Retrieve an individual track
|
|
operationId: getTrack
|
|
parameters:
|
|
- $ref: '../parameters/query/includeForTracks.yml'
|
|
- name: trackId
|
|
in: path
|
|
description: The unique identifier of the track
|
|
required: true
|
|
schema:
|
|
type: string
|
|
responses:
|
|
'200':
|
|
description: A track object
|
|
content:
|
|
application/vnd.api+json:
|
|
schema:
|
|
type: object
|
|
required: [data]
|
|
properties:
|
|
data:
|
|
$ref: '../schemas/Track.yml'
|
|
'403':
|
|
$ref: '../responses/NotAuthorized.yml'
|
|
'404':
|
|
$ref: '../responses/NotFound.yml'
|
|
'500':
|
|
$ref: '../responses/InternalServerError.yml'
|