Solutia ta unica de acces
la platformele online

be a part of the future with Biometrics.

Download on the App Store Download form Google Play

DE CE NOI?

Motive pentru a folosi
serviciile noastre


Simplificati integrarea pentru autentificarea clientilor.


Preveniti furtul identitatii si fraudele.


Cunoastere clientilor nu a fost niciodata atat de usoara, rapida, sigura, flexibila si prietenoasa.


Verificarea identitatii cu usurinta si eficienta


Cu ajutorul testelor liveness veti avea cel mai inalt nivel de verificare a identitatilor.


Autentificare fara parola / biometrica.

CUM

Folositi serviciile noastre

Va vom oferi o solutie de autentificare la cheie, sigura, performanta si corelata cu nevoile business-ului dvs.

Integrarea

Integreaza usor butonul „Login with My Identity” in site-ul dvs (folosind un callback url).

Butonul de login MyIdentity


            <script>
              myidentity.Buttons({
                onApprove: function(data) {
                  // The data object represents a successful identification session.
                  // It does not contain any specific user details.
                  // The data object is sent to your own login api
                  //   which uses the client id and client secret to get customer's data.
                  fetch('/your-own-api-login-endpoint', {
                    body: JSON.stringify(data),
                    method: 'POST',
                  })
                  .then((response) => {
                    // Process your own successul login response
                  })
                  .catch((error) => {
                    // Process your failed successul login response
                  })
              }).render('#myidentity-button-container');
            </script>
              

Autentificarea

Sistemul dvs. va permite autentificariea primind un payload ce contine datele/informatiile utilizatorului.

Demo & documentation

Exemplu JSON


                {
                  "firstName": "John",
                  "lastName": "Smith",
                  "isAlive": true,
                  "age": 27,
                  "address": { 
                    "streetAddress": "21 2nd Street", 
                    "city": "New York", 
                    "state": "NY", 
                    "postalCode": "10021-3100" 
                    },
                  "phoneNumbers": [ 
                      { 
                        "type": "home",
                      }
                  ]
                }