Resolves the given email against your organization, validates the org-level integration token, and — if your organization has the Integration API feature provisioned — returns a bearer token to use as Authorization: Bearer <token> on every other endpoint. Tokens expire after 5 minutes; call this endpoint again to get a new one.
- Mock serverhttps://developers.loadlink.ca/_mock/member-discovery/openapi/v2/authorize
- Devhttps://azdevgateway.loadlink.ca/member-discovery/v2/authorize
curl -i -X POST \
https://developers.loadlink.ca/_mock/member-discovery/openapi/v2/authorize \
-H 'Content-Type: application/json' \
-d '{
"email": "dispatch@example.com",
"orgToken": "ll_example-org-token"
}'Response
{ "accessToken": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9...", "tokenType": "Bearer", "expiresIn": 300 }