Business Insight v2

Business Insight v2

Authentication

access_token for Production

curl --location 'https://login.enento.com/am/oauth2/access_token' \
                    --header 'Content-Type: application/x-www-form-urlencoded' \
                    --data-urlencode 'grant_type=password' \
                    --data-urlencode 'client_id=m2m_authentication_client' \
                    --data-urlencode 'username=<YOUR_PROD_CLIENT_ID>' \
                    --data-urlencode 'password=<YOUR_PROD_CLIENT_SECRET>'

access_token for Test

curl --location 'https://at-login.enento.com/am/oauth2/access_token' \
                    --header 'Content-Type: application/x-www-form-urlencoded' \
                    --data-urlencode 'grant_type=password' \
                    --data-urlencode 'client_id=m2m_authentication_client' \
                    --data-urlencode 'username=<YOUR_TEST_CLIENT_ID>' \
                    --data-urlencode 'password=<YOUR_TEST_CLIENT_SECRET>'