Validate Serial Number
POST /api/data/ValidateSerialNoπ’ Validate a device serial number against the format rules for a specific manufacturer.
- π Provide both the
serialNoand themanufacturerCode - β Validation is manufacturer-specific β rules are defined natively per brand
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{}