Harmony IntegrationHarmony Integration

Valideer IMEI

POST /api/data/ValidateImei

📡 Valideer een 15-cijferig IMEI-nummer voordat u dit in een contract gebruikt. Dit eindpunt voert een strikte algoritmische controlesom uit (Luhn-algoritme).

  • 📤 Stuur de IMEI als een gewone string in de request body
  • ✅ Specifiek vereist voor Mobiele Telefoons
  • ❌ Retourneert een fout als het IMEI-formaat of de controlesom ongeldig is
POST
/api/data/ValidateImei

Authorization

BearerAuth
AuthorizationBearer <token>

In: header

Request Body

application/json

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