Manufacturer
POST /api/insurance/SearchManufacturerπ Search for device manufacturers filtered by item category and an optional search term.
- ποΈ Filter by
itemCategoryCodeto narrow results to a specific device type - π Use the optional
searchTermto match manufacturer names
About itemCategoryCode
The dropdown above shows a placeholder list that may not be complete. Categories available for your account can differ β sign in to load them automatically, or call SearchItemCategory to fetch the real list for your account.
Authorization
BearerAuth AuthorizationBearer <token>
In: header
Request Body
application/json
TypeScript Definitions
Use the request body type in TypeScript.
itemCategoryCode*stringPHONETABLETNOTEBOOKVISUALWEARABLESOTHERDESKTOPNote: this is a placeholder list and may not be complete. The categories available for your account can differ β sign in to load them automatically, or call SearchItemCategory to fetch the complete list.
Device category code used to filter manufacturers.
searchTerm*string
Search term to filter manufacturers by name. Leave empty to return all manufacturers in the category.
exactMatch*boolean
If true, only exact matches are returned. If false, partial matches are included.
Response Body
application/json
curl -X POST "https://jubilee-ws.test.harmony.nl/api/insurance/SearchManufacturer" \ -H "Content-Type: application/json" \ -d '{ "itemCategoryCode": "OTHER", "searchTerm": "", "exactMatch": false }'{
"success": true,
"errors": null,
"manufacturers": [
{
"code": "APPLE",
"name": "Apple"
},
{
"code": "SAMSUNG",
"name": "Samsung"
}
]
}