[Beta – preprod] List eligible supports for a product
GET/companies/:companyID/products/:productID/supports
[Beta – preprod] List eligible supports for a product
Request
Path Parameters
companyID uuidrequired
productID uuidrequired
Query Parameters
page number
Default value: 1
limit number
Possible values: >= 1 and <= 100
Default value: 20
Responses
- 200
- 404
success - paginated list of eligible supports
- application/json
- Schema
- Example (from schema)
Schema
Array [
]
data
object[]
required
id uuidrequired
productSupportId uuidrequired
name stringnullablerequired
code stringnullablerequired
supportType stringrequired
pagination
object
required
page numberrequired
Current pagination page
limit numberrequired
Number of items per page
total numberrequired
Total number of matching items
totalPages numberrequired
Total number of pages
{
"data": [
{
"id": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
"productSupportId": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
"name": "string",
"code": "string",
"supportType": "string"
}
],
"pagination": {
"page": 0,
"limit": 0,
"total": 0,
"totalPages": 0
}
}
Product not found
Loading...