EUDR compliance tools including due diligence statements, risk assessments, traceability, and evidence management.
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/eudr/due-diligence-statements
- Production serverhttps://developers-pulse.coolset.com/api/eudr/due-diligence-statements
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X GET \
'https://api.coolset.com/_mock/eudr-api/eudr/due-diligence-statements?created_at=string&created_at__gte=string&created_at__lte=string&dds_identifier=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/eudr-api/eudr/due-diligence-statements
- Production serverhttps://developers-pulse.coolset.com/api/eudr/due-diligence-statements
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X POST \
https://api.coolset.com/_mock/eudr-api/eudr/due-diligence-statements \
-H 'Authorization: YOUR_API_KEY_HERE' \
-H 'Content-Type: application/json' \
-d '{
"dds_identifier": "string"
}'Response
application/json
{ "id": 0, "dds_identifier": "string", "dds_data": {}, "orders": [ 0 ], "pulse_params": "string", "created_at": "2019-08-24T14:15:22Z", "updated_at": "2019-08-24T14:15:22Z" }
- Mock serverhttps://api.coolset.com/_mock/eudr-api/eudr/due-diligence-statements/{id}
- Production serverhttps://developers-pulse.coolset.com/api/eudr/due-diligence-statements/{id}
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X GET \
'https://api.coolset.com/_mock/eudr-api/eudr/due-diligence-statements/{id}' \
-H 'Authorization: YOUR_API_KEY_HERE'Response
application/json
{ "id": 0, "dds_identifier": "string", "dds_data": {}, "orders": [ 0 ], "pulse_params": "string", "created_at": "2019-08-24T14:15:22Z", "updated_at": "2019-08-24T14:15:22Z" }
- Mock serverhttps://api.coolset.com/_mock/eudr-api/eudr/due-diligence-statements/{id}
- Production serverhttps://developers-pulse.coolset.com/api/eudr/due-diligence-statements/{id}
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X DELETE \
'https://api.coolset.com/_mock/eudr-api/eudr/due-diligence-statements/{id}' \
-H 'Authorization: YOUR_API_KEY_HERE'