Authenticate and Call the Integration API
Every client (for example, Postman, Python, Excel/Power Query, Power BI, curl, and ETL tools) exposes HTTP method, headers, and body in different places; however, the steps are the same.
Activity Steps
- To request a token, POST
/identity/connect/tokenwith:- Basic authentication (
client_id:client_secret). - Form body:
grant_type=client_credentials
- Basic authentication (
- To call the dataset, POST the External Link URL copied from the configuration with:
- Header:
Authorization: Bearer <access_token> - Header:
Content-Type: application/json - Body:
{}(empty JSON object).
- Header:
Note: See Configure an Integration API for how to configure the data and copy the External Link URL.
