Using GQL with windows.net

Rust integration

Install
cargo add GQL
Quick start
use GQL::Client;

let client = Client::new("YOUR_ACCESS_TOKEN");
Gets the details for the currently logged-in user.
curl \
  -H "Authorization: Bearer $ACCESS_TOKEN" \
  https://graph.windows.net/{tenantID}/me
Gets list of users for the current tenant.
curl \
  -H "Authorization: Bearer $ACCESS_TOKEN" \
  https://graph.windows.net/{tenantID}/users
Gets list of groups for the current tenant.
curl \
  -H "Authorization: Bearer $ACCESS_TOKEN" \
  https://graph.windows.net/{tenantID}/groups
SDK on GitHub 📄 API Docs
SDK
GQL
Rust
API
windows.net
windows.net:graphrbac
At a glance
Language Rust
Endpoints56
Base URLhttps://graph.windows.net