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/origins
- Production serverhttps://developers-scranton.coolset.com/api/origins
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X GET \
'https://api.coolset.com/_mock/supply-chain-api/origins?name=string&name__icontains=string&name__startswith=string&name__endswith=string&description=string&description__icontains=string&description__startswith=string&description__endswith=string&country_code=string&external_id=string&external_id__icontains=string&external_id__startswith=string&external_id__endswith=string&external_id__in=string&assessment_status=pending&assessment_status__in=string&passing_percentage_gte=string&failing_percentage_gte=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/origins
- Production serverhttps://developers-scranton.coolset.com/api/origins
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X POST \
https://api.coolset.com/_mock/supply-chain-api/origins \
-H 'Authorization: YOUR_API_KEY_HERE' \
-H 'Content-Type: application/json' \
-d '{
"name": "string",
"description": "string",
"country_code": "st",
"location": {},
"external_id": "string"
}'Response
application/json
{ "id": 0, "name": "string", "description": "string", "country_code": "st", "location": {}, "external_id": "string", "open_atlas_external_id": "string", "open_atlas_information": {}, "pulse_params": "string", "created_at": "2019-08-24T14:15:22Z", "updated_at": "2019-08-24T14:15:22Z", "assessment_summary": {}, "assessment_status": "pending" }
- Mock serverhttps://api.coolset.com/_mock/supply-chain-api/origins/{id}
- Production serverhttps://developers-scranton.coolset.com/api/origins/{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/origins/{id}' \
-H 'Authorization: YOUR_API_KEY_HERE'Response
application/json
{ "id": 0, "name": "string", "description": "string", "country_code": "st", "location": {}, "external_id": "string", "open_atlas_external_id": "string", "open_atlas_information": {}, "pulse_params": "string", "created_at": "2019-08-24T14:15:22Z", "updated_at": "2019-08-24T14:15:22Z", "assessment_summary": {}, "assessment_status": "pending" }
- Mock serverhttps://api.coolset.com/_mock/supply-chain-api/origins/{id}
- Production serverhttps://developers-scranton.coolset.com/api/origins/{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/origins/{id}' \
-H 'Authorization: YOUR_API_KEY_HERE' \
-H 'Content-Type: application/json' \
-d '{
"name": "string",
"description": "string",
"country_code": "st",
"location": {},
"external_id": "string"
}'Response
application/json
{ "id": 0, "name": "string", "description": "string", "country_code": "st", "location": {}, "external_id": "string", "open_atlas_external_id": "string", "open_atlas_information": {}, "pulse_params": "string", "created_at": "2019-08-24T14:15:22Z", "updated_at": "2019-08-24T14:15:22Z", "assessment_summary": {}, "assessment_status": "pending" }
- Mock serverhttps://api.coolset.com/_mock/supply-chain-api/origins/{id}
- Production serverhttps://developers-scranton.coolset.com/api/origins/{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/origins/{id}' \
-H 'Authorization: YOUR_API_KEY_HERE'