Authentication
Use the provided tenant id, client id, client secret, and client scope to get a bearer token for the api calls. View examples for reference.
Example
curl --request POST \
--url https://login.microsoftonline.com/b73a46b6-2a32-403a-a997-c0bcc75a3bfd/oauth2/v2.0/token \
--header 'Content-Type: multipart/form-data' \
--form client_id=<INSERT_CLIENT_ID> \
--form scope=https://gecommonb2c.onmicrosoft.com/3abe6460-82ae-4d58-b9d0-62864f8c9d65/.default \
--form 'client_secret=<INSERT_CLIENT_SECRET>' \
--form grant_type=client_credentials
If needed contact the Development Team for more details.