API Authentication
To generate your access token, send a request to
POST /connect/token?__tenant=<your-tenant-id>with the following body in the x-www-form-urlencoded body format:
grant_type: passwordclient_id: apiclient_secret: <ask-provider>scope: Enterpriseusername: <your-username>password: <your-password>__tenant: <your-tenant-id>If the request is correct, the application will return a JSON with the access token:
{ "access_token": "ey...", "token_type": "Bearer", "expires_in": 3599}