@@ -, +, @@ --- api/v1/swagger/paths/patrons.yaml | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) --- a/api/v1/swagger/paths/patrons.yaml +++ a/api/v1/swagger/paths/patrons.yaml @@ -351,6 +351,16 @@ - $ref: "../swagger.yaml#/parameters/q_param" - $ref: "../swagger.yaml#/parameters/q_body" - $ref: "../swagger.yaml#/parameters/q_header" + - name: x-koha-embed + in: header + required: false + description: Embed list sent as a request header + type: array + items: + type: string + enum: + - extended_attributes + collectionFormat: csv responses: "200": description: A list of patrons @@ -448,6 +458,16 @@ summary: Get patron parameters: - $ref: "../swagger.yaml#/parameters/patron_id_pp" + - name: x-koha-embed + in: header + required: false + description: Embed list sent as a request header + type: array + items: + type: string + enum: + - extended_attributes + collectionFormat: csv produces: - application/json responses: --