Validate IMEI
POST /api/data/ValidateImeiπ‘ Validate a 15-digit IMEI number before using it in a contract. The endpoint performs a strict algorithmic checksum (Luhn algorithm).
- π€ Send the IMEI as a plain string in the request body
- β Specifically required for Mobile Phones
- β Returns an error if the IMEI format or checksum is invalid
Authorization
BearerAuth AuthorizationBearer <token>
In: header
Request Body
application/json
TypeScript Definitions
Use the request body type in TypeScript.
body*string
15-digit IMEI number to validate.
Response Body
application/json
application/json
curl -X POST "https://jubilee-ws.test.harmony.nl/api/data/ValidateImei" \ -H "Content-Type: application/json" \ -d '982923518812529'true{}