Step 2: Compliance & Documentation
Submit required corporate documents to enable full API access and production routing.
-
✓
Certificate of Incorporation
Verified · Processed in 2h 14m -
✓
DUNS Number & Tax ID Verification
Matched against global registry -
⏸
AML/KYB Compliance Pack
Pending • Upload beneficial ownership docs -
⏸
Data Processing Agreement (DPA)
Awaiting legal signature from authorized rep
Developer Resources & SDKs
Initialize the client using your enterprise API keys. Keys are scoped to your tenant ID.
import { AevumClient } from '@aevum/zenth-sdk';
const client = new AevumClient({
apiKey: process.env.AEVUM_API_KEY,
tenantId: 'ent_94x2k7z',
environment: 'sandbox' // switch to 'production' after go-live
});
await client.integrations.sync({
source: 'erp_sap_hana',
schema: 'v2'
});
Use the sandbox to validate payloads, test webhook routing, and simulate failure modes before production cutover.
# Curl example: Trigger test event
curl -X POST https://sandbox.api.aevumzenth.com/v1/webhooks/test \r
-H "Authorization: Bearer $SANDBOX_TOKEN" \r
-H "Content-Type: application/json" \r
-d '{ "type": "order.created", "amount": 15000, "currency": "USD" }'