{ "opencollection": "1.0.0", "info": { "name": "Microsoft 365 (Microsoft Graph API) Calendar Users API", "version": "1.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": "List users in the organization", "type": "http" }, "http": { "method": "GET", "url": "https://graph.microsoft.com/v1.0/users" }, "docs": "List users in the organization" }, { "info": { "name": "Create a user", "type": "http" }, "http": { "method": "POST", "url": "https://graph.microsoft.com/v1.0/users", "body": { "type": "json", "data": "{}" } }, "docs": "Create a user" }, { "info": { "name": "Get a user by id or userPrincipalName", "type": "http" }, "http": { "method": "GET", "url": "https://graph.microsoft.com/v1.0/users/:id", "params": [ { "name": "id", "value": "", "type": "path" } ] }, "docs": "Get a user by id or userPrincipalName" }, { "info": { "name": "Update a user", "type": "http" }, "http": { "method": "PATCH", "url": "https://graph.microsoft.com/v1.0/users/:id", "params": [ { "name": "id", "value": "", "type": "path" } ] }, "docs": "Update a user" }, { "info": { "name": "Delete a user", "type": "http" }, "http": { "method": "DELETE", "url": "https://graph.microsoft.com/v1.0/users/:id", "params": [ { "name": "id", "value": "", "type": "path" } ] }, "docs": "Delete a user" } ] } ], "bundled": true }