Added example pagination to bulk GET of Supplied Product
This commit is contained in:
@@ -650,6 +650,27 @@ paths:
|
|||||||
type: string
|
type: string
|
||||||
get:
|
get:
|
||||||
summary: List SuppliedProducts for an Enterprise
|
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:
|
tags:
|
||||||
- SuppliedProducts
|
- SuppliedProducts
|
||||||
responses:
|
responses:
|
||||||
@@ -773,7 +794,7 @@ paths:
|
|||||||
schema:
|
schema:
|
||||||
type: string
|
type: string
|
||||||
get:
|
get:
|
||||||
summary: Show SuppliedProduct
|
summary: Show a single Supplied Product
|
||||||
tags:
|
tags:
|
||||||
- SuppliedProducts
|
- SuppliedProducts
|
||||||
responses:
|
responses:
|
||||||
|
|||||||
Reference in New Issue
Block a user