Microsoft Dynamics 365 API Documentation
This is the complete API documentation for connecting to the Microsoft Dynamics 365 API using MindCloud's Universal API. If you are new to MindCloud, start with the Introduction to see how one API can sit in front of many different apps.
MindCloud is an integration company that offers one normalized API to access 3,100+ apps from a single place. It cleans up provider-specific quirks, keeps requests and responses consistent, and centralizes authentication so you do not need to manage separate flows for every app. Browse other apps.
Meet Microsoft Dynamics 365: connect business data and workflows through MindCloud's Universal API. Keep reading to get started.
Quickstart
Before you run your first Microsoft Dynamics 365 request, you need three things:
- A MindCloud account — sign in or create an account at MindCloud.
- A MindCloud API Key — create one in API Keys. Keep it on your server.
- At least one Microsoft Dynamics 365 connection — create or choose one in Connections. Note its
connectionId.
Every Microsoft Dynamics 365 action uses the same URL pattern:
POST https://connect.mindcloud.co/v2/universal/apps/microsoftDynamics365/actions/{actionSlug}/runYou need a MindCloud API Key and a Microsoft Dynamics 365 connection. Then call an action such as Get Accounts:
curl --request POST \
--url "https://connect.mindcloud.co/v2/universal/apps/microsoftDynamics365/actions/get-accounts/run" \
--header "Authorization: Bearer $MINDCLOUD_API_KEY" \
--header "Content-Type: application/json" \
--data '{
"connectionId": "$CONNECTION_ID",
"arguments": {}
}'Every response comes back in the same envelope, with your rows in a data array:
{
"success": true,
"data": [
{ "id": "1042", "name": "Ava" }
],
"meta": {}
}After your first request works, use Shape your requests to control arguments, pagination, filtering, fields, and errors.
Authenticate with a MindCloud API Key plus a connectionId for your Microsoft Dynamics 365 account. See Microsoft Dynamics 365 API Authentication for the full flow and how to get your connection credentials.
Microsoft Dynamics 365 actions
All 36 published actions for this Microsoft Dynamics 365 version. Each page documents the endpoint, arguments, and response controls.
- POSTCreate Account
- POSTCreate Contact
- POSTCreate Custom Entity
- POSTCreate Customer
- POSTCreate Customer Postal Address
- POSTCreate Distinct Product
- POSTCreate ProductsV2 Entity
- POSTCreate Project
- POSTCreate Project Contract
- POSTCreate Project Sales Item Requirement
- POSTCreate Sellable Released Product
- POSTCreate WBS Activity Estimate
- POSTCreate WBS Draft Entity
- GETGet Accounts
- GETGet All Available Entities
- GETGet Contact By Id
- GETGet Contacts
- GETGet Custom APIs
- GETGet Custom Table
- GETGet Custom Table Entry By Id
- GETGet Customers
- GETGet Distinct Products
- GETGet Logistics Postal Address BI Entities
- GETGet ProductsV2
- GETGet Project Contracts
- GETGet Projects
- GETGet Released Products V2
- GETGet Sellable Released Products
- GETGet System Users
- GETGet Trv Exp Mobile Activities
- GETGet Workers
- POSTPatch Accounts
- POSTPatch Contact
- PUTPatch Custom Table
- POSTPatch Custom Table Field
- GETSearch Entity Definition
Related apps
More apps on the Universal API, behind the same REST shape. Or browse all apps.