
Request Access
Please send an email apihelp@dmp.com to request access to the DMP API

Activate your API Key
After DMP approves your access, you will receive an email with your login instructions.
Once you have logged into the DMP API site, click the "Products" menu, then choose "SecureCom APIs".
In the "Your Subscriptions" section, enter a name for your subscription, read through the Terms of Use and agree, then click "Subscribe".
You will then be automatically taken to the Profile page where you can access your Subscription Keys (API Keys).
Using your API Keys
Clients can include the subscription key in their API requests using one of two methods:
1. HTTP Header.
Add the DMP-API-Subscription-Key HTTP header to your request, with the value being your subscription key.
DMP-API-Subscription-Key: <your_subscription_key>
2. Query parameter.
Include the subscription-key query parameter in the API URL, with the value being your subscription key. This method is used if the header is not present.
GET https://api.dmp.com/your-api-path?subscription-key=<your_subscription_key>
Example (using cURL with HTTP Header):
curl -X GET "https://api.dmp.com/your-api-path/your-endpoint" \
-H "DMP-API-Subscription-Key: <your_subscription_key>"
Example (using cURL with Query Parameter):
curl -X GET https://your-apim-instance.azure-api.net/your-api-path/your-endpoint?subscription-key=<your_subscription_key>
Important Considerations:
• Security:
Treat subscription keys as sensitive information. Do not hardcode them directly into client-side code or expose them publicly. Consider using secure methods like environment variables or a key vault.
• Key Regeneration:
Regularly regenerate your subscription keys for enhanced security, especially if a key might have been compromised.

