Added example pagination to bulk GET of Supplied Product

This commit is contained in:
RaggedStaff
2024-05-19 18:31:34 +01:00
parent df5f77f8b3
commit 3a4d7acc10

View File

@@ -650,6 +650,27 @@ paths:
type: string
get:
summary: List SuppliedProducts for an Enterprise
parameters:
- name: page
description: The page number of items to start with (see limit)
in: query
required: true
schema:
type: integer
minimum: 1
default: 1
example: 1
- name: limit
description: The number of items to return
in: query
required: true
schema:
type: integer
format: int32
minimum: 1
maximum: 225
default: 25
example: 25
tags:
- SuppliedProducts
responses:
@@ -773,7 +794,7 @@ paths:
schema:
type: string
get:
summary: Show SuppliedProduct
summary: Show a single Supplied Product
tags:
- SuppliedProducts
responses: