EUDR compliance tools including due diligence statements, risk assessments, traceability, and evidence management.
EUDR Compliance API//
- ViewSet for data exchange runs providing list, create, and retrieve operations.
ViewSet for data exchange runs providing list, create, and retrieve operations.
ViewSet for data exchange runs providing list, create, and retrieve operations.
ViewSet for data exchange...
Coolset EUDR Compliance API (1.0)
Download OpenAPI description
Overview
URL
E-mail
Languages
Servers
Mock server
https://api.coolset.com/_mock/eudr-api/
Production server
https://developers-pulse.coolset.com/api/
- Mock serverhttps://api.coolset.com/_mock/eudr-api/imports
- Production serverhttps://developers-pulse.coolset.com/api/imports
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X GET \
'https://api.coolset.com/_mock/eudr-api/imports?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/eudr-api/imports
- Production serverhttps://developers-pulse.coolset.com/api/imports
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X POST \
https://api.coolset.com/_mock/eudr-api/imports \
-H 'Authorization: YOUR_API_KEY_HERE' \
-H 'Content-Type: application/json' \
-d '{
"results": {},
"document_id": 0,
"model_identifier": "string",
"dry_run": true
}'Response
application/json
{ "results": {}, "document_id": 0, "model_identifier": "string", "dry_run": true, "id": 0, "run_id": "dded282c-8ebd-44cf-8ba5-9a234973d1ec", "company_id": 0, "created_at": "2019-08-24T14:15:22Z", "updated_at": "2019-08-24T14:15:22Z" }
- Mock serverhttps://api.coolset.com/_mock/eudr-api/imports/{id}
- Production serverhttps://developers-pulse.coolset.com/api/imports/{id}
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X GET \
'https://api.coolset.com/_mock/eudr-api/imports/{id}' \
-H 'Authorization: YOUR_API_KEY_HERE'Response
application/json
{ "id": 0, "run_id": "dded282c-8ebd-44cf-8ba5-9a234973d1ec", "company_id": 0, "results": {}, "document": 0, "model_identifier": "string", "created_at": "2019-08-24T14:15:22Z", "updated_at": "2019-08-24T14:15:22Z" }