Harmony IntegrationHarmony Integration

Validate Serial Number

POST /api/data/ValidateSerialNo

πŸ”’ Validate a device serial number against the format rules for a specific manufacturer.

  • 🏭 Provide both the serialNo and the manufacturerCode
  • βœ… Validation is manufacturer-specific β€” rules are defined natively per brand
POST
/api/data/ValidateSerialNo

Authorization

BearerAuth
AuthorizationBearer <token>

In: header

Request Body

application/json

TypeScript Definitions

Use the request body type in TypeScript.

manufacturer*string
Device manufacturer name, e.g. Apple or Samsung.
serialNo*string
Device serial number to validate.

Response Body

application/json

application/json

curl -X POST "https://jubilee-ws.test.harmony.nl/api/data/ValidateSerialNo" \  -H "Content-Type: application/json" \  -d '{    "manufacturer": "Apple",    "serialNo": "5123532532532"  }'
true
{}