Idnow Serial Number | Install !free!
This process typically applies when you are integrating IDnow into your own application (web or mobile) or setting up a dedicated test environment.
Prerequisites
You have received a Serial Number (e.g., SN-XXXX-XXXX-XXXX ) from IDnow via email or your customer dashboard. You have administrator access to your IDnow account (if using the Self-Service Portal). Your system meets IDnow’s technical requirements (TLS 1.2+, modern browser, API access).
Step 1: Access the IDnow Administration Portal idnow serial number install
Go to the IDnow Self-Service Portal or Admin Console (URL provided in your welcome email, often https://admin.idnow.io ). Log in with your IDnow credentials.
Step 2: Navigate to Serial Number Management
In the left-hand menu, click Integrations or API & Serial Numbers (wording may vary). Select Serial Numbers or Add New Serial Number . This process typically applies when you are integrating
Step 3: Enter Your Serial Number
Click Add Serial Number . Paste or type the serial number exactly as provided (case-sensitive). Choose the environment (Production or Sandbox/Test). Assign a descriptive name (e.g., “My Web App Production”).
Step 4: Configure the Serial Number Once added, configure these essential settings: | Setting | Recommended Value | |---------|------------------| | Type | VideoIdent / AutoIdent / Both | | Return URL | Your app’s callback URL (e.g., https://yourapp.com/idnow-callback ) | | Webhook | Endpoint for status updates | | Allowed IPs | (Optional) Restrict API access to your server IPs | Save the configuration. Step 5: Integrate the Serial Number into Your Code You will use the serial number in API calls or SDK initialization. Example – REST API (Identification Request) curl -X POST https://api.idnow.de/api/v2/identifications \ -H "Authorization: Bearer YOUR_API_KEY" \ -H "Content-Type: application/json" \ -d '{ "serial_number": "SN-XXXX-XXXX-XXXX", "user_id": "customer-12345" }' Your system meets IDnow’s technical requirements (TLS 1
Example – Web SDK Integration idnow.initialize({ serialNumber: "SN-XXXX-XXXX-XXXX", containerId: "idnow-container", language: "en" });
Step 6: Activate & Test