Getting Started • DET — New License Process APIs
Start your DET — New License Process APIs integration
Configure the base URL, authenticate, and make your first request.
Production Base URL
All API requests for DET — New License Process APIs should be targeted at
https://{gwHost} unless testing in a local sandbox.Integration Steps
Configure the base URL
The primary server URL is taken from the first server entry in the OpenAPI specification.
API_BASE_URL=https://{gwHost}Authenticate
Use POST /api/v1/auth/authenticate to obtain credentials or tokens for protected requests.
API_TOKEN=your_access_tokenSend a request
Call one of the operations defined in the OpenAPI file.
curl "$API_BASE_URL/services/oauth2/token" \
-X POST \
-H "Authorization: Bearer $API_TOKEN" \
-H "Content-Type: application/json"