Manage orders, products, origins, and value chains for supply chain transparency and compliance.
Coolset Supply Chain API (1.0)
Download OpenAPI description
Overview
URL
E-mail
Languages
Servers
Mock server
https://api.coolset.com/_mock/supply-chain-api/
Production server
https://developers-scranton.coolset.com/api/
- Mock serverhttps://api.coolset.com/_mock/supply-chain-api/products
- Production serverhttps://developers-scranton.coolset.com/api/products
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X GET \
'https://api.coolset.com/_mock/supply-chain-api/products?sku=string&sku__icontains=string&sku__startswith=string&sku__endswith=string&name=string&name__icontains=string&name__startswith=string&name__endswith=string&description=string&description__icontains=string&description__startswith=string&description__endswith=string&description__isnull=string&scientific_name=string&scientific_name__icontains=string&scientific_name__startswith=string&scientific_name__endswith=string&scientific_name__isnull=string&common_name=string&common_name__icontains=string&common_name__startswith=string&common_name__endswith=string&common_name__isnull=string&type=manufactured&type__in=string&hs_code=string&hs_code__icontains=string&hs_code__startswith=string&hs_code__endswith=string&hs_code__in=string&external_id=string&external_id__icontains=string&external_id__startswith=string&external_id__endswith=string&external_id__in=string&commodity=cattle&commodity__in=string&composition=simple&composition__in=string&ordering=string&search=string&limit=0&offset=0' \
-H 'Authorization: YOUR_API_KEY_HERE'Response
application/json
{ "count": 0, "next": "http://example.com", "previous": "http://example.com", "results": [ { … } ] }
- Mock serverhttps://api.coolset.com/_mock/supply-chain-api/products
- Production serverhttps://developers-scranton.coolset.com/api/products
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X POST \
https://api.coolset.com/_mock/supply-chain-api/products \
-H 'Authorization: YOUR_API_KEY_HERE' \
-H 'Content-Type: application/json' \
-d '{
"sku": "string",
"name": "string",
"description": "string",
"scientific_name": "string",
"common_name": "string",
"type": "manufactured",
"hs_code": "string",
"commodity": "cattle",
"composition": "simple",
"external_id": "string",
"product_components": [
0
]
}'Response
application/json
{ "id": 0, "sku": "string", "name": "string", "description": "string", "scientific_name": "string", "common_name": "string", "type": "manufactured", "hs_code": "string", "commodity": "cattle", "composition": "simple", "external_id": "string", "product_components": [ 0 ], "product_components_detail": [ { … } ], "created_at": "2019-08-24T14:15:22Z", "updated_at": "2019-08-24T14:15:22Z" }
- Mock serverhttps://api.coolset.com/_mock/supply-chain-api/products/{id}
- Production serverhttps://developers-scranton.coolset.com/api/products/{id}
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X GET \
'https://api.coolset.com/_mock/supply-chain-api/products/{id}' \
-H 'Authorization: YOUR_API_KEY_HERE'Response
application/json
{ "id": 0, "sku": "string", "name": "string", "description": "string", "scientific_name": "string", "common_name": "string", "type": "manufactured", "hs_code": "string", "commodity": "cattle", "composition": "simple", "external_id": "string", "product_components": [ 0 ], "product_components_detail": [ { … } ], "created_at": "2019-08-24T14:15:22Z", "updated_at": "2019-08-24T14:15:22Z" }
- Mock serverhttps://api.coolset.com/_mock/supply-chain-api/products/{id}
- Production serverhttps://developers-scranton.coolset.com/api/products/{id}
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X PATCH \
'https://api.coolset.com/_mock/supply-chain-api/products/{id}' \
-H 'Authorization: YOUR_API_KEY_HERE' \
-H 'Content-Type: application/json' \
-d '{
"sku": "string",
"name": "string",
"description": "string",
"scientific_name": "string",
"common_name": "string",
"type": "manufactured",
"hs_code": "string",
"commodity": "cattle",
"composition": "simple",
"external_id": "string",
"product_components": [
0
]
}'Response
application/json
{ "id": 0, "sku": "string", "name": "string", "description": "string", "scientific_name": "string", "common_name": "string", "type": "manufactured", "hs_code": "string", "commodity": "cattle", "composition": "simple", "external_id": "string", "product_components": [ 0 ], "product_components_detail": [ { … } ], "created_at": "2019-08-24T14:15:22Z", "updated_at": "2019-08-24T14:15:22Z" }
- Mock serverhttps://api.coolset.com/_mock/supply-chain-api/products/{id}
- Production serverhttps://developers-scranton.coolset.com/api/products/{id}
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X DELETE \
'https://api.coolset.com/_mock/supply-chain-api/products/{id}' \
-H 'Authorization: YOUR_API_KEY_HERE'