make the ratingkeys work with multiple at once

This commit is contained in:
JasonLandbridge
2025-06-03 13:05:14 +02:00
parent b6f001510b
commit 0b0cd0ad30

View File

@@ -3,15 +3,17 @@ get:
- Library - Library
summary: Get Media Metadata summary: Get Media Metadata
description: | description: |
This endpoint will return all the (meta)data of a library item specified with by the ratingKey. This endpoint will return all the (meta)data of one or more library items specified by the ratingKey.
Multiple rating keys can be provided as a comma-separated list (e.g., "21119,21617").
operationId: get-media-meta-data operationId: get-media-meta-data
parameters: parameters:
- name: ratingKey - name: ratingKey
in: path in: path
description: the id of the library item to return the children of. description: The id(s) of the library item(s) to return metadata for. Can be a single ID or comma-separated list of IDs.
schema: schema:
type: integer type: string
example: 9518 pattern: '^[0-9]+(,[0-9]+)*$'
example: "21119,21617"
required: true required: true
- name: includeConcerts - name: includeConcerts
in: query in: query