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