Getting Started
We allow our customers and partners to fully integrate with our services. The Digicust API is extensive, well-documented, and easy to get started with.
Prerequisites
You have an active customer account
You have a user account with email-password authentication
Your execution strategy is properly set up. An execution strategy defines how customs cases are being processed. You can manage your execution strategies in our web app.
If you do not fulfill the above prerequisites, please create a new account with https://app.digicust.com/
Authentication
You need an access token for all requests. Fetch your access token with the following code:
curl -X 'POST' \
'https://api.digicust.com/generic/api/auth/authenticate' \
-H 'accept: application/json' \
-H 'Content-Type: application/json' \
-d '{
"username": "<YOUR USERNAME>",
"password": "<YOUR PASSWORD>"
}'
For more details: https://api.digicust.com/generic/api-docs/#/Auth/post_api_auth_authenticate
Documentation
Find detailed documentation on available endpoints here:
Last updated
Was this helpful?