{ "opencollection": "1.0.0", "info": { "name": "Microsoft Graph Calendar Users API", "version": "v1.0" }, "request": { "auth": { "type": "oauth2", "flow": "client_credentials", "accessTokenUrl": "https://login.microsoftonline.com/common/oauth2/v2.0/token", "credentials": { "clientId": "{{clientId}}", "clientSecret": "{{clientSecret}}" } } }, "items": [ { "info": { "name": "Users", "type": "folder" }, "items": [ { "info": { "name": "Get signed-in user profile", "type": "http" }, "http": { "method": "GET", "url": "https://graph.microsoft.com/v1.0/me" }, "docs": "Returns the profile of the signed-in user." }, { "info": { "name": "Get signed-in user photo", "type": "http" }, "http": { "method": "GET", "url": "https://graph.microsoft.com/v1.0/me/photo/$value" }, "docs": "Get signed-in user photo" }, { "info": { "name": "List users", "type": "http" }, "http": { "method": "GET", "url": "https://graph.microsoft.com/v1.0/users", "params": [ { "name": "$select", "value": "", "type": "query" }, { "name": "$filter", "value": "", "type": "query" }, { "name": "$top", "value": "", "type": "query" } ] }, "docs": "List users" }, { "info": { "name": "Get user by id or principal name", "type": "http" }, "http": { "method": "GET", "url": "https://graph.microsoft.com/v1.0/users/:id", "params": [ { "name": "id", "value": "", "type": "path", "description": "User id or userPrincipalName." } ] }, "docs": "Get user by id or principal name" }, { "info": { "name": "Get the signed-in user's manager", "type": "http" }, "http": { "method": "GET", "url": "https://graph.microsoft.com/v1.0/me/manager" }, "docs": "Get the signed-in user's manager" }, { "info": { "name": "List the signed-in user's direct reports", "type": "http" }, "http": { "method": "GET", "url": "https://graph.microsoft.com/v1.0/me/directReports" }, "docs": "List the signed-in user's direct reports" } ] } ], "bundled": true }