Harmony IntegrationHarmony Integration

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
POST
/api/data/ValidateImei

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
{}