Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!Learn from the best! Meet the four finalists headed to the FINALS of the Power BI Dataviz World Championships! Register now
Hi,
I have a python program that posts data via requests.post using the Push URL. This works fine.
Is there a way to request.get with a get URL? This would allow me to check what data I already have in the push dataset on Power BI and only post the new data, for example if the program stopped working in the middle of the day.
Thanks for any help
@Anonymous
import requests
import msal
app_id = ''
tenant_id = ''
username = ''
password = ''
authority_url = f'https://login.microsoftonline.com/{tenant_id}'
scopes = [r'https://analysis.windows.net/powerbi/api/.default']
client = msal.PublicClientApplication(app_id, authority=authority_url)
response = client.acquire_token_by_username_password(username, password, scopes)
access_id = response.get('access_token')
endpoint = 'https://api.powerbi.com/v1.0/myorg/groups'
headers = {
'Content-Type': 'application/json',
'Authorization': f'Bearer {access_id}'
}
response_request = requests.get(endpoint, headers=headers)
if response_request.status_code == 200:
result = response_request.json()
for item in result['value']:
print(item['name'])
Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.
Check out the February 2026 Power BI update to learn about new features.
| User | Count |
|---|---|
| 3 | |
| 3 | |
| 2 | |
| 2 | |
| 1 |
| User | Count |
|---|---|
| 6 | |
| 5 | |
| 3 | |
| 3 | |
| 2 |