{ "opencollection": "1.0.0", "info": { "name": "Microsoft Dataverse Web Metadata Records API", "version": "9.2" }, "request": { "auth": { "type": "oauth2", "flow": "authorization_code", "authorizationUrl": "https://login.microsoftonline.com/common/oauth2/v2.0/authorize", "accessTokenUrl": "https://login.microsoftonline.com/common/oauth2/v2.0/token", "credentials": { "clientId": "{{clientId}}", "clientSecret": "{{clientSecret}}" } } }, "items": [ { "info": { "name": "Records", "type": "folder" }, "items": [ { "info": { "name": "Retrieve records from a Dataverse table", "type": "http" }, "http": { "method": "GET", "url": "https://{org}.api.crm.dynamics.com/api/data/v9.2/:entitySetName", "params": [ { "name": "entitySetName", "value": "accounts", "type": "path" }, { "name": "$select", "value": "", "type": "query" }, { "name": "$filter", "value": "", "type": "query" }, { "name": "$orderby", "value": "", "type": "query" }, { "name": "$top", "value": "", "type": "query" }, { "name": "$expand", "value": "", "type": "query" }, { "name": "$count", "value": "", "type": "query" } ] }, "docs": "Retrieve records from a Dataverse table" }, { "info": { "name": "Create a record", "type": "http" }, "http": { "method": "POST", "url": "https://{org}.api.crm.dynamics.com/api/data/v9.2/:entitySetName", "params": [ { "name": "entitySetName", "value": "", "type": "path" } ], "body": { "type": "json", "data": "{}" } }, "docs": "Create a record" }, { "info": { "name": "Retrieve a record by id", "type": "http" }, "http": { "method": "GET", "url": "https://{org}.api.crm.dynamics.com/api/data/v9.2/:entitySetName(:id)", "params": [ { "name": "entitySetName", "value": "", "type": "path" }, { "name": "id", "value": "", "type": "path" }, { "name": "$select", "value": "", "type": "query" } ] }, "docs": "Retrieve a record by id" }, { "info": { "name": "Update or upsert a record", "type": "http" }, "http": { "method": "PATCH", "url": "https://{org}.api.crm.dynamics.com/api/data/v9.2/:entitySetName(:id)", "params": [ { "name": "entitySetName", "value": "", "type": "path" }, { "name": "id", "value": "", "type": "path" } ], "body": { "type": "json", "data": "{}" } }, "docs": "Update or upsert a record" }, { "info": { "name": "Delete a record", "type": "http" }, "http": { "method": "DELETE", "url": "https://{org}.api.crm.dynamics.com/api/data/v9.2/:entitySetName(:id)", "params": [ { "name": "entitySetName", "value": "", "type": "path" }, { "name": "id", "value": "", "type": "path" } ] }, "docs": "Delete a record" } ] } ], "bundled": true }