Using azure-sdk-for-python with azure.com

Python integration

✓ Official SDK
Install
pip install azure-sdk-for-python
Quick start
import azure-sdk-for-python

# Use an OAuth2 access token
client = azure_sdk_for_python.Client(access_token="YOUR_ACCESS_TOKEN")
Get all role definitions that are applicable at scope and above.
curl \
  -H "Authorization: Bearer $ACCESS_TOKEN" \
  /{scope}/providers/Microsoft.Authorization/roleDefinitions
Get role definition by name (GUID).
curl \
  -H "Authorization: Bearer $ACCESS_TOKEN" \
  /{scope}/providers/Microsoft.Authorization/roleDefinitions/{roleDefinitionId}
Gets all permissions the caller has for a resource group.
curl \
  -H "Authorization: Bearer $ACCESS_TOKEN" \
  /subscriptions/{subscriptionId}/resourcegroups/{resourceGroupName}/providers/Microsoft.Authorization/permissions
SDK on GitHub 📄 API Docs
SDK
azure-sdk-for-python
Python
API
azure.com
azure.com:authorization-authorization-RoleDefinitionsCalls
At a glance
Language Python
Endpoints6
✓ Official