Before integrating with the API, ensure that your development environment is set up and that you have obtained an API key.
Your customer success manager will be able to provide an API key for access to the test environment.
Header format
Authentication to the API is performed via the api-key header. This header must be included in every request.
Header name:
api-keyValue: Your unique API key string
Authentication example
curl -X POST https://.../v1/transaction-checks \
-H "Content-Type: application/json" \
-H "api-key: YOUR_API_KEY_HERE" \
-d '{ ...body }'2xx OK: You are connected!
401 Unauthorized: Your key is invalid or missing