system.kanoa.inventory.getManufacturers(paramsDict)
Returns manufacturer records from the inventory catalog.
A manufacturer represents a part's OEM/maker (e.g. "SKF", "Rockwell Automation").
Pass an empty dict to retrieve all manufacturers, or supply one or more filter keys in paramsDict to narrow the result set to a specific manufacturer or subset of manufacturers.
Parameters
paramsDict Dictionary
| - enabled | Boolean | |
| - manufacturerId | Integer | |
| - manufacturerName | String |
Returns
data pyDataset
Example
paramsDict = {'enabled': True}
data = system.kanoa.inventory.getManufacturers(paramsDict)
data = system.kanoa.utilities.convertDatasetToJSON(data)
for i, row in enumerate(data):
print 'Row %i'%i
for k,v in row.items():
print k,v
break #Just limiting to returning the columns from the first record for display purposes
>>>
Row 0
lastUpdatedBy jason
manufacturerName ABB
manufacturerId 3
manufacturerCode None
enabled True
changedDate None
lastUpdated Sun Jun 07 22:48:34 UTC 2026
createdDate Sun Jun 07 22:48:34 UTC 2026
websiteUrl None
createdBy 5
changedBy None
>>>