API Key Authentication
🔑 Deprecation Notice: API Key Authentication
We are deprecating the API Key authentication. After deprecation period, requests using API Keys will be rejected.
⚠️ Action Required
Migrate to Token-based Authentication to ensure uninterrupted access.
🛠️ Migration Steps
- Retrieve client credentials: NET2GRID will provide the client credentials (client ID and client secret).
- Update your requests: Replace headers in authenticated calls
Before (API Key)
password: YOUR_API_KEY
After (Token)
Authorization: Bearer YOUR_ACCESS_TOKEN
- Request token: Use POST /token call to request an access token
Updated 12 days ago