Fabrikant
POST /api/insurance/SearchManufacturer🏭 Zoek naar fabrikanten van apparaten, gefilterd op artikelcategorie en een optionele zoekterm.
- 🗂️ Filter op
itemCategoryCodeom resultaten te beperken tot een specifiek apparaattype - 🔎 Gebruik de optionele
searchTermom fabrikantnamen te matchen
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"
}
]
}