Authentication
To authenticate with Atlas Connect endpoints, call the following endpoint:
https://egsatl-trng-eu-apim.developer.azure-api.net/signin-oauth/password/keycloakoauthtrngwith the following queryParams:
scopes: openid%20profile%20emailThen the url to use will be:
The body of the API request in raw format should look like:
{"username":"yourusername@atlas.com","password":"AtlasPassword"}The response will contain a accessToken value that will need to be provided on every request. This token will expire in 1 (one) hour, and a new one needs to be generated after each token expiry
Follow the curl command shown below:
curl --location 'https://egsatl-trng-eu-apim.developer.azure-api.net/signin-oauth/password/keycloakoauthtrng?scopes=openid%20profile%20email' \
--header 'Content-Type: text/plain' \
--data-raw '{"username":"yourusername@atlas.com","password":"AtlasPassword"}'