retraced REST API
@retracedgmbh/public-api-service/v0 (0.0.1)
Download OpenAPI specification:Download
The retraced API comprises all publicly enabled options to make machine-to-machine changes in the retraced platform: http://retraced.com/..
Get Single Company by ID
Authorizations:
bearerAuthapiKeyAuth
path Parameters
id required | string Examples: RWFWXC1H1M8 QE4ARF7G3VG 13c13921-8e0a-4299-a282-023d9fae25de A hashed id of the company Available optionsCould be both a:
|
query Parameters
expand | string |
header Parameters
Accept | string Example: application/json |
Request Body schema: application/json
Schema not providedResponses
Response samples
- 200
- 401
- 403
- 404
Content type
application/json
{- "id": "string",
- "officialName": "string",
- "facilityProcesses": [ ],
- "country": "string",
- "countryName": "string"
}
List All Companies in my network
Authorizations:
bearerAuthapiKeyAuth
query Parameters
page | number >= 0 Default: 0 |
count | number [ 0 .. 500 ] Default: 15 |
filter | string <= 512 characters |
header Parameters
Accept | string Example: application/json |
Request Body schema: application/json
Schema not providedResponses
Response samples
- 200
- 401
- 403
- 404
Content type
application/json
{- "data": [
- {
- "id": "string",
- "officialName": "string",
- "facilityProcesses": [ ],
- "country": "string",
- "countryName": "string"
}
], - "meta": {
- "count": 0,
- "pageSize": 0,
- "page": 0,
- "totalCount": 0
}
}
Create a new API Key
Authorizations:
bearerAuthapiKeyAuth
header Parameters
Accept | string Example: application/json |
Request Body schema: application/json
label required | string [ 1 .. 255 ] characters A unique name that you would like to give to the api key |
Responses
Request samples
- Payload
Content type
application/json
{- "label": "Staging"
}
Response samples
- 200
- 401
- 403
- 404
- 409
Content type
application/json
{- "label": "string",
- "companyApiKey": "string"
}
Delete Company API Key
Authorizations:
bearerAuthapiKeyAuth
header Parameters
Accept | string Example: application/json |
Request Body schema: application/json
label required | string [ 1 .. 255 ] characters The label of api key label that you want to delete |
Responses
Request samples
- Payload
Content type
application/json
{- "label": "Staging"
}
Response samples
- 204
- 401
- 403
- 404
Content type
application/json
null
List all attachment templates
Authorizations:
bearerAuthapiKeyAuth
query Parameters
page | number >= 0 Default: 0 |
count | number [ 0 .. 500 ] Default: 15 |
name | string |
sort | string |
filter | string <= 512 characters |
header Parameters
Accept | string Example: application/json |
Request Body schema: application/json
Schema not providedResponses
Response samples
- 200
- 401
- 403
Content type
application/json
{- "data": [
- {
- "id": "string",
- "name": "string",
- "description": "string"
}
], - "meta": {
- "count": 0,
- "pageSize": 0,
- "page": 0,
- "totalCount": 0
}
}
Create a purchase order
Authorizations:
bearerAuthapiKeyAuth
header Parameters
Accept | string Example: application/json |
Request Body schema: application/json
orderNumber required | string non-empty Your order number |
Array of strings or null | |
string or null | |
string or null | |
attachmentTemplateId required | string non-empty |
Array of objects | |
required | object |
required | object |
object or null | |
required | Array of objects non-empty |
Array of strings or null | |
string or null | |
string or null |
Responses
Request samples
- Payload
Content type
application/json
{- "orderNumber": "Order12345",
- "orderTags": "My Tag",
- "orderDate": "2023-12-10T11:41:04.278Z",
- "deliveryDate": "2023-12-15T11:41:04.278Z",
- "attachmentTemplateId": "string",
- "attachments": [
- {
- "remoteFileUrl": "string",
- "type": "PURCHASE_ORDER",
- "name": "string",
- "reference": "string",
- "description": "string"
}
], - "buyer": {
- "id": "string",
- "facilityProcesses": [
- "WEAVING_MILL"
]
}, - "supplier": {
- "id": "string",
- "facilityProcesses": [
- "WEAVING_MILL"
]
}, - "receiver": {
- "id": "string",
- "facilityProcesses": [
- "WEAVING_MILL"
]
}, - "lines": [
- {
- "productId": "string",
- "unit": "LITRE",
- "quantity": 0,
- "secondaryUnit": "KILOGRAM",
- "secondaryQuantity": 0
}
], - "status": "IN_PROGRESS",
- "agreedDeliveryDate": "2023-12-15T11:41:04.278Z"
}
Response samples
- 202
- 401
- 403
- 404
Content type
application/json
{- "id": "string"
}
Create a sales order
Authorizations:
bearerAuthapiKeyAuth
header Parameters
Accept | string Example: application/json |
Request Body schema: application/json
orderNumber required | string non-empty Your order number |
Array of strings or null | |
string or null | |
string or null | |
attachmentTemplateId required | string non-empty |
Array of objects | |
required | object |
required | object |
object or null | |
required | Array of objects non-empty |
Array of strings or null | |
string or null | |
string or null |
Responses
Request samples
- Payload
Content type
application/json
{- "orderNumber": "Order12345",
- "orderTags": "My Tag",
- "orderDate": "2023-12-10T11:41:04.278Z",
- "deliveryDate": "2023-12-15T11:41:04.278Z",
- "attachmentTemplateId": "string",
- "attachments": [
- {
- "remoteFileUrl": "string",
- "type": "PURCHASE_ORDER",
- "name": "string",
- "reference": "string",
- "description": "string"
}
], - "buyer": {
- "id": "string",
- "facilityProcesses": [
- "WEAVING_MILL"
]
}, - "supplier": {
- "id": "string",
- "facilityProcesses": [
- "WEAVING_MILL"
]
}, - "receiver": {
- "id": "string",
- "facilityProcesses": [
- "WEAVING_MILL"
]
}, - "lines": [
- {
- "productId": "string",
- "unit": "LITRE",
- "quantity": 0,
- "secondaryUnit": "KILOGRAM",
- "secondaryQuantity": 0
}
], - "status": "IN_PROGRESS",
- "agreedDeliveryDate": "2023-12-15T11:41:04.278Z"
}
Response samples
- 202
- 401
- 403
- 404
Content type
application/json
{- "id": "string"
}
Get single purchase order
Authorizations:
bearerAuthapiKeyAuth
path Parameters
id required | string |
header Parameters
Accept | string Example: application/json |
Request Body schema: application/json
Schema not providedResponses
Response samples
- 200
- 401
- 403
- 404
Content type
application/json
{- "id": "string",
- "orderNumber": "string",
- "buyerCompany": {
- "id": "string",
- "facilityProcesses": "string"
}, - "attachmentTemplate": {
- "id": "string"
}, - "supplierCompany": {
- "id": "string",
- "facilityProcesses": "string"
}, - "tracingOrderTags": "string",
- "supplierCompanyId": "string",
- "buyerCompanyId": "string",
- "facilityProcess": "string",
- "receiverCompanyId": "string",
- "orderDate": "2019-08-24T14:15:22Z",
- "deliveryDate": "2019-08-24T14:15:22Z",
- "status": "string",
- "orderTags": "string",
- "agreedDeliveryDate": "string",
- "attachments": [
- {
- "id": "string",
- "remoteFileUrl": "string",
- "type": "string"
}
], - "responsibleUsers": [
- {
- "userId": "string",
- "email": "string"
}
], - "lines": [
- {
- "productId": "string",
- "unit": "string",
- "quantity": 0,
- "secondaryUnit": "string",
- "secondaryQuantity": 0
}
]
}
PUT a purchase order
Authorizations:
bearerAuthapiKeyAuth
header Parameters
Accept | string Example: application/json |
Request Body schema: application/json
orderNumber required | string non-empty Your order number |
Array of strings or null | |
string or null | |
string or null | |
attachmentTemplateId required | string non-empty |
Array of objects | |
required | object |
required | object |
object or null | |
required | Array of objects non-empty |
Array of strings or null | |
string or null | |
string or null |
Responses
Request samples
- Payload
Content type
application/json
{- "orderNumber": "Order12345",
- "orderTags": "My Tag",
- "orderDate": "2023-12-10T11:41:04.278Z",
- "deliveryDate": "2023-12-15T11:41:04.278Z",
- "attachmentTemplateId": "string",
- "attachments": [
- {
- "remoteFileUrl": "string",
- "type": "PURCHASE_ORDER",
- "name": "string",
- "reference": "string",
- "description": "string"
}
], - "buyer": {
- "id": "string",
- "facilityProcesses": [
- "WEAVING_MILL"
]
}, - "supplier": {
- "id": "string",
- "facilityProcesses": [
- "WEAVING_MILL"
]
}, - "receiver": {
- "id": "string",
- "facilityProcesses": [
- "WEAVING_MILL"
]
}, - "lines": [
- {
- "productId": "string",
- "unit": "LITRE",
- "quantity": 0,
- "secondaryUnit": "KILOGRAM",
- "secondaryQuantity": 0
}
], - "status": "IN_PROGRESS",
- "agreedDeliveryDate": "2023-12-15T11:41:04.278Z"
}
Response samples
- 202
- 401
- 403
- 404
Content type
application/json
{- "id": "string"
}
Get single sales order
Authorizations:
bearerAuthapiKeyAuth
path Parameters
id required | string |
header Parameters
Accept | string Example: application/json |
Request Body schema: application/json
Schema not providedResponses
Response samples
- 200
- 401
- 403
- 404
Content type
application/json
{- "id": "string",
- "orderNumber": "string",
- "buyerCompany": {
- "id": "string",
- "facilityProcesses": "string"
}, - "attachmentTemplate": {
- "id": "string"
}, - "supplierCompany": {
- "id": "string",
- "facilityProcesses": "string"
}, - "tracingOrderTags": "string",
- "supplierCompanyId": "string",
- "buyerCompanyId": "string",
- "facilityProcess": "string",
- "receiverCompanyId": "string",
- "orderDate": "2019-08-24T14:15:22Z",
- "deliveryDate": "2019-08-24T14:15:22Z",
- "status": "string",
- "orderTags": "string",
- "agreedDeliveryDate": "string",
- "attachments": [
- {
- "id": "string",
- "remoteFileUrl": "string",
- "type": "string"
}
], - "responsibleUsers": [
- {
- "userId": "string",
- "email": "string"
}
], - "lines": [
- {
- "productId": "string",
- "unit": "string",
- "quantity": 0,
- "secondaryUnit": "string",
- "secondaryQuantity": 0
}
]
}
PUT a sales order
Authorizations:
bearerAuthapiKeyAuth
header Parameters
Accept | string Example: application/json |
Request Body schema: application/json
orderNumber required | string non-empty Your order number |
Array of strings or null | |
string or null | |
string or null | |
attachmentTemplateId required | string non-empty |
Array of objects | |
required | object |
required | object |
object or null | |
required | Array of objects non-empty |
Array of strings or null | |
string or null | |
string or null |
Responses
Request samples
- Payload
Content type
application/json
{- "orderNumber": "Order12345",
- "orderTags": "My Tag",
- "orderDate": "2023-12-10T11:41:04.278Z",
- "deliveryDate": "2023-12-15T11:41:04.278Z",
- "attachmentTemplateId": "string",
- "attachments": [
- {
- "remoteFileUrl": "string",
- "type": "PURCHASE_ORDER",
- "name": "string",
- "reference": "string",
- "description": "string"
}
], - "buyer": {
- "id": "string",
- "facilityProcesses": [
- "WEAVING_MILL"
]
}, - "supplier": {
- "id": "string",
- "facilityProcesses": [
- "WEAVING_MILL"
]
}, - "receiver": {
- "id": "string",
- "facilityProcesses": [
- "WEAVING_MILL"
]
}, - "lines": [
- {
- "productId": "string",
- "unit": "LITRE",
- "quantity": 0,
- "secondaryUnit": "KILOGRAM",
- "secondaryQuantity": 0
}
], - "status": "IN_PROGRESS",
- "agreedDeliveryDate": "2023-12-15T11:41:04.278Z"
}
Response samples
- 202
- 401
- 403
- 404
Content type
application/json
{- "id": "string"
}
Create New Product
Authorizations:
bearerAuthapiKeyAuth
header Parameters
Accept | string Example: application/json |
Request Body schema: application/json
name required | string [ 1 .. 255 ] characters |
productCategoryId required | string non-empty You can get the list of product categories from list all product types endpoint. Once added, product category cannot be changed. |
code required | string non-empty |
string or null | |
boolean or null | |
supplierCompanyIds | Array of strings |
vendorCompanyIds | Array of strings |
Array of objects | |
object | |
Array of objects | |
object or null | |
Array of objects | |
Array of objects | |
Array of objects <= 20 items | |
Array of objects Only allowed for Product category id of Fabrics. | |
Array of objects | |
Array of objects |
Responses
Request samples
- Payload
Content type
application/json
{- "name": "string",
- "productCategoryId": "string",
- "code": "string",
- "description": "string",
- "isProductComponent": true,
- "supplierCompanyIds": [
- "string"
], - "vendorCompanyIds": [
- "string"
], - "collections": [
- {
- "name": "string"
}
], - "productProperties": {
- "brand": [
- "string"
], - "department": [
- "string"
], - "season": [
- "string"
]
}, - "materials": [
- {
- "materialId": "string",
- "percentage": "string",
- "weight": 0,
- "originCountry": "string"
}
], - "weight": {
- "unit": "LITRE",
- "value": 0
}, - "colors": [
- {
- "name": "string",
- "imageRemoteUrl": "string"
}
], - "variations": [
- {
- "color": "string",
- "otherAttributes": "string",
- "sku": "string"
}
], - "imageList": [
- {
- "remoteUrl": "string"
}
], - "productCategoryFields": [
- {
- "fieldName": "string",
- "fieldType": "NUMBER_UOM",
- "fieldValue": {
- "value": "string",
- "unit": "LITRE"
}, - "standardFieldName": "FABRIC_WEIGHT"
}
], - "bom": [
- {
- "childProductId": "string",
- "quantity": 0,
- "unit": "LITRE",
- "weight": {
- "unit": "LITRE",
- "value": 0
}, - "isMainComponent": 0,
- "placementId": "string"
}
], - "externalProductTypes": [
- {
- "externalId": "string",
- "externalName": "string"
}
]
}
Response samples
- 202
- 401
- 403
- 404
Content type
application/json
{- "id": "string"
}
List All Products
Authorizations:
bearerAuthapiKeyAuth
query Parameters
supplierCompanyIds | string |
page | number >= 0 Default: 0 |
count | number [ 0 .. 500 ] Default: 15 |
sort | string |
filter | string <= 512 characters Examples: isProductComponent=true productCategoryId=xyz123 |
header Parameters
Accept | string Example: application/json |
Request Body schema: application/json
Schema not providedResponses
Response samples
- 200
- 401
- 403
Content type
application/json
{- "data": [
- {
- "id": "string",
- "code": "string",
- "name": "string",
- "description": "string",
- "isProductComponent": true,
- "collections": [
- {
- "name": "string"
}
], - "productLevelName": "string",
- "productCategoryName": "string",
- "colors": [
- {
- "imageUrl": "string",
- "name": "string",
- "imageRemoteUrl": "string"
}
], - "variations": [
- null
], - "suppliers": [
- {
- "id": "string",
- "name": "string",
- "country": "string"
}
], - "vendors": [
- {
- "id": "string",
- "name": "string",
- "country": "string"
}
], - "materials": [
- {
- "id": "string",
- "materialId": "string",
- "name": "string",
- "description": "string",
- "category": "string",
- "percentage": "string",
- "weight": 0,
- "originCountry": "string",
- "insights": "string",
- "imageFileId": "string",
- "imageFileUrl": "string",
- "quantityUnits": [ ],
- "weightUnits": [ ],
- "tags": "string",
- "brandId": "string",
- "isRecycled": 0,
- "isSynthetic": 0,
- "externalProductTypes": [
- {
- "id": "string",
- "name": "string",
- "externalId": "string",
- "externalName": "string",
- "retracedProductTypeId": "string",
- "retracedMaterialId": "string",
- "createdAt": "string",
- "assetTable": "string",
- "companyId": "string"
}
]
}
], - "imageList": [
- {
- "id": "string",
- "url": "string",
- "remoteUrl": "string",
- "fileType": "string"
}
], - "weight": 0,
- "weightUnit": "string",
- "productProperties": {
- "brand": [
- {
- "name": "string",
- "category": "string",
- "productId": "string",
- "propertyId": "string"
}
], - "department": [
- {
- "name": "string",
- "category": "string",
- "productId": "string",
- "propertyId": "string"
}
], - "season": [
- {
- "name": "string",
- "category": "string",
- "productId": "string",
- "propertyId": "string"
}
]
}, - "categoryFieldValues": [
- {
- "id": "string",
- "fieldName": "string",
- "fieldValue": {
- "value": { }
}
}
], - "bom": [
- {
- "childProductId": "string",
- "quantity": 0,
- "unit": "LITRE",
- "weight": 0,
- "placementId": "string",
- "weightUnit": "LITRE",
- "isMainComponent": 0
}
], - "externalProductTypes": [
- {
- "id": "string",
- "name": "string",
- "externalId": "string",
- "externalName": "string",
- "retracedProductTypeId": "string",
- "retracedMaterialId": "string",
- "createdAt": "string",
- "assetTable": "string",
- "companyId": "string"
}
]
}
], - "meta": {
- "count": 0,
- "pageSize": 0,
- "page": 0,
- "totalCount": 0
}
}
Get single Product
Authorizations:
bearerAuthapiKeyAuth
path Parameters
id required | string non-empty |
query Parameters
supplyChain | boolean Default: false |
attributes | boolean Default: false |
variations | boolean Default: false |
orders | boolean Default: false |
header Parameters
Accept | string Example: application/json |
Request Body schema: application/json
Schema not providedResponses
Response samples
- 200
- 401
- 403
- 404
Content type
application/json
{- "id": "string",
- "code": "string",
- "name": "string",
- "description": "string",
- "isProductComponent": true,
- "collections": [
- {
- "name": "string"
}
], - "productLevelName": "string",
- "productCategoryName": "string",
- "colors": [
- {
- "imageUrl": "string",
- "name": "string",
- "imageRemoteUrl": "string"
}
], - "variations": [
- null
], - "suppliers": [
- {
- "id": "string",
- "name": "string",
- "country": "string"
}
], - "vendors": [
- {
- "id": "string",
- "name": "string",
- "country": "string"
}
], - "materials": [
- {
- "id": "string",
- "materialId": "string",
- "name": "string",
- "description": "string",
- "category": "string",
- "percentage": "string",
- "weight": 0,
- "originCountry": "string",
- "insights": "string",
- "imageFileId": "string",
- "imageFileUrl": "string",
- "quantityUnits": [ ],
- "weightUnits": [ ],
- "tags": "string",
- "brandId": "string",
- "isRecycled": 0,
- "isSynthetic": 0,
- "externalProductTypes": [
- {
- "id": "string",
- "name": "string",
- "externalId": "string",
- "externalName": "string",
- "retracedProductTypeId": "string",
- "retracedMaterialId": "string",
- "createdAt": "string",
- "assetTable": "string",
- "companyId": "string"
}
]
}
], - "imageList": [
- {
- "id": "string",
- "url": "string",
- "remoteUrl": "string",
- "fileType": "string"
}
], - "weight": 0,
- "weightUnit": "string",
- "productProperties": {
- "brand": [
- {
- "name": "string",
- "category": "string",
- "productId": "string",
- "propertyId": "string"
}
], - "department": [
- {
- "name": "string",
- "category": "string",
- "productId": "string",
- "propertyId": "string"
}
], - "season": [
- {
- "name": "string",
- "category": "string",
- "productId": "string",
- "propertyId": "string"
}
]
}, - "categoryFieldValues": [
- {
- "id": "string",
- "fieldName": "string",
- "fieldValue": {
- "value": { }
}
}
], - "bom": [
- {
- "childProductId": "string",
- "quantity": 0,
- "unit": "LITRE",
- "weight": 0,
- "placementId": "string",
- "weightUnit": "LITRE",
- "isMainComponent": 0
}
], - "externalProductTypes": [
- {
- "id": "string",
- "name": "string",
- "externalId": "string",
- "externalName": "string",
- "retracedProductTypeId": "string",
- "retracedMaterialId": "string",
- "createdAt": "string",
- "assetTable": "string",
- "companyId": "string"
}
]
}
Updates product fields passed in the request body
Authorizations:
bearerAuthapiKeyAuth
header Parameters
Accept | string Example: application/json |
Request Body schema: application/json
name | string <= 255 characters |
code | string |
string or null | |
boolean or null | |
supplierCompanyIds | Array of strings |
isStoryActive | boolean |
vendorCompanyIds | Array of strings |
Array of objects | |
object | |
Array of objects | |
object or null | |
Array of objects | |
Array of objects | |
Array of objects <= 20 items | |
Array of objects Only allowed for Product category id of Fabrics. | |
Array of objects | |
Array of objects |
Responses
Request samples
- Payload
Content type
application/json
{- "name": "string",
- "code": "string",
- "description": "string",
- "isProductComponent": true,
- "supplierCompanyIds": [
- "string"
], - "isStoryActive": true,
- "vendorCompanyIds": [
- "string"
], - "collections": [
- {
- "name": "string"
}
], - "productProperties": {
- "brand": [
- "string"
], - "department": [
- "string"
], - "season": [
- "string"
]
}, - "materials": [
- {
- "materialId": "string",
- "percentage": "string",
- "weight": 0,
- "originCountry": "string"
}
], - "weight": {
- "unit": "LITRE",
- "value": 0
}, - "colors": [
- {
- "name": "string",
- "imageRemoteUrl": "string"
}
], - "variations": [
- {
- "color": "string",
- "otherAttributes": "string",
- "sku": "string"
}
], - "imageList": [
- {
- "remoteUrl": "string"
}
], - "productCategoryFields": [
- {
- "fieldName": "string",
- "fieldType": "NUMBER_UOM",
- "fieldValue": {
- "unit": "LITRE",
- "value": "string"
}, - "standardFieldName": "FABRIC_WEIGHT"
}
], - "bom": [
- {
- "childProductId": "string",
- "quantity": 0,
- "unit": "LITRE",
- "weight": {
- "unit": "LITRE",
- "value": 0
}, - "isMainComponent": 0,
- "placementId": "string"
}
], - "externalProductTypes": [
- {
- "externalId": "string",
- "externalName": "string"
}
]
}
Response samples
- 202
- 401
- 403
- 404
Content type
application/json
{- "id": "string"
}
Update entire product by id
Authorizations:
bearerAuthapiKeyAuth
header Parameters
Accept | string Example: application/json |
Request Body schema: application/json
name required | string [ 1 .. 255 ] characters |
code required | string non-empty |
string or null | |
boolean or null | |
supplierCompanyIds | Array of strings |
vendorCompanyIds | Array of strings |
isStoryActive | boolean |
Array of objects | |
object | |
Array of objects | |
object or null | |
Array of objects | |
Array of objects | |
Array of objects <= 20 items | |
Array of objects Only allowed for Product category id of Fabrics. | |
Array of objects | |
Array of objects |
Responses
Request samples
- Payload
Content type
application/json
{- "name": "string",
- "code": "string",
- "description": "string",
- "isProductComponent": true,
- "supplierCompanyIds": [
- "string"
], - "vendorCompanyIds": [
- "string"
], - "isStoryActive": true,
- "collections": [
- {
- "name": "string"
}
], - "productProperties": {
- "brand": [
- "string"
], - "department": [
- "string"
], - "season": [
- "string"
]
}, - "materials": [
- {
- "materialId": "string",
- "percentage": "string",
- "weight": 0,
- "originCountry": "string"
}
], - "weight": {
- "unit": "LITRE",
- "value": 0
}, - "colors": [
- {
- "name": "string",
- "imageRemoteUrl": "string"
}
], - "variations": [
- {
- "color": "string",
- "otherAttributes": "string",
- "sku": "string"
}
], - "imageList": [
- {
- "remoteUrl": "string"
}
], - "productCategoryFields": [
- {
- "fieldName": "string",
- "fieldType": "NUMBER_UOM",
- "fieldValue": {
- "unit": "LITRE",
- "value": "string"
}, - "standardFieldName": "FABRIC_WEIGHT"
}
], - "bom": [
- {
- "childProductId": "string",
- "quantity": 0,
- "unit": "LITRE",
- "weight": {
- "unit": "LITRE",
- "value": 0
}, - "isMainComponent": 0,
- "placementId": "string"
}
], - "externalProductTypes": [
- {
- "externalId": "string",
- "externalName": "string"
}
]
}
Response samples
- 202
- 401
- 403
- 404
Content type
application/json
{- "id": "string"
}
List All Product types
Authorizations:
bearerAuthapiKeyAuth
query Parameters
page | number >= 0 Default: 0 |
count | number [ 1 .. 1000 ] Default: 500 |
sort | string |
filter | string <= 512 characters |
header Parameters
Accept | string Example: application/json |
Request Body schema: application/json
Schema not providedResponses
Response samples
- 200
- 401
- 403
Content type
application/json
{- "data": [
- {
- "id": "string",
- "name": "string",
- "externalId": "string",
- "externalName": "string",
- "retracedProductTypeId": "string",
- "createdAt": "string"
}
], - "meta": {
- "count": 0,
- "pageSize": 0,
- "page": 0,
- "totalCount": 0
}
}