{ "opencollection": "1.0.0", "info": { "name": "Microsoft Dataverse Web API (Power Apps) System Tables API", "version": "9.2" }, "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": "Tables", "type": "folder" }, "items": [ { "info": { "name": "Retrieve accounts", "type": "http" }, "http": { "method": "GET", "url": "https://{organization}.crm.dynamics.com/api/data/v9.2/accounts", "params": [ { "name": "$select", "value": "", "type": "query" }, { "name": "$filter", "value": "", "type": "query" }, { "name": "$top", "value": "", "type": "query" }, { "name": "$orderby", "value": "", "type": "query" } ] }, "docs": "Returns a collection of account records. Supports OData query options ($select, $filter, $top, $orderby)." }, { "info": { "name": "Create an account", "type": "http" }, "http": { "method": "POST", "url": "https://{organization}.crm.dynamics.com/api/data/v9.2/accounts", "body": { "type": "json", "data": "{}" } }, "docs": "Create an account" }, { "info": { "name": "Retrieve an account by id", "type": "http" }, "http": { "method": "GET", "url": "https://{organization}.crm.dynamics.com/api/data/v9.2/accounts(:accountid)", "params": [ { "name": "accountid", "value": "", "type": "path", "description": "Primary key (GUID) of the account record." } ] }, "docs": "Retrieve an account by id" }, { "info": { "name": "Update an account", "type": "http" }, "http": { "method": "PATCH", "url": "https://{organization}.crm.dynamics.com/api/data/v9.2/accounts(:accountid)", "params": [ { "name": "accountid", "value": "", "type": "path", "description": "Primary key (GUID) of the account record." } ], "body": { "type": "json", "data": "{}" } }, "docs": "Update an account" }, { "info": { "name": "Delete an account", "type": "http" }, "http": { "method": "DELETE", "url": "https://{organization}.crm.dynamics.com/api/data/v9.2/accounts(:accountid)", "params": [ { "name": "accountid", "value": "", "type": "path", "description": "Primary key (GUID) of the account record." } ] }, "docs": "Delete an account" } ] } ], "bundled": true }