Harmony IntegrationHarmony Integration

Manufacturer

POST /api/insurance/SearchManufacturer

🏭 Search for device manufacturers filtered by item category and an optional search term.

  • πŸ—‚οΈ Filter by itemCategoryCode to narrow results to a specific device type
  • πŸ”Ž Use the optional searchTerm to 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.

POST
/api/insurance/SearchManufacturer

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"
    }
  ]
}