MSD 365 Sales Passthrough Requests

Industry Code

The industry field in write apis for account and lead expects industry code as input, the following are list of industry codes supported:

Industry CodeLabel
1Accounting
2Agriculture and Non-petrol Natural Resource Extraction
3Broadcasting Printing and Publishing
4Brokers
5Building Supply Retail
6Business Services
7Consulting
8Consumer Services
9Design, Direction and Creative Management
10Distributors, Dispatchers and Processors
11Doctor's Offices and Clinics
12Durable Manufacturing
13Eating and Drinking Places
14Entertainment Retail
15Equipment Rental and Leasing
16Financial
17Food and Tobacco Processing
18Inbound Capital Intensive Processing
19Inbound Repair and Services
20Insurance
21Legal Services
22Non-Durable Merchandise Retail
23Outbound Consumer Service
24Petrochemical Extraction and Distribution
25Service Retail
26SIG Affiliations
27Social Services
28Special Outbound Trade Contractors
29Specialty Realty
30Transportation
31Utility Creation and Distribution
32Vehicle Retail
33Wholesale

Currency Id

The currency field in write apis for deal expects currency id as input, you can use the following passthrough request to get the list of available currency ids. use the transactioncurrencyid from the response as input for currency field in create and update deal apis

A cURL request could look like this:

curl --location 'https://api.getknit.dev/v1.0/passthrough' \
--header 'Authorization: Bearer <YOUR_API_KEY>' \
--header 'X-Knit-Integration-Id: <YOUR_INTEGRATION_ID>' \
--header 'accept: application/json' \
--header 'content-type: application/json' \
--data '{
    "method":"GET",
    "path": "transactioncurrencies?$select=currencyname,isocurrencycode"
}'

and the response could look like the following:

{
  "success": true,
  "data": {
    "response": {
      "body": "{\"@odata.context\":\"https://org53945f84.crm8.dynamics.com/api/data/v9.2/$metadata#transactioncurrencies(currencyname,isocurrencycode)\",\"value\":[{\"@odata.etag\":\"W/\\\"6625952\\\"\",\"isocurrencycode\":\"INR\",\"currencyname\":\"Indian Rupee\",\"transactioncurrencyid\":\"f2281096-144c-f111-bec6-6045bdad5157\"}]}",
      "headers": {
        ":status": "200",
        "cache-control": "no-cache",
        "content-type": "application/json; odata.metadata=minimal",
        "date": "Tue, 23 Jun 2026 04:44:45 GMT",
        "content-length": "194"
      }
    }
  }
}