List all Biometric Validations (Listar todas las Validaciones Biométricas)

Endpoint

https://api.verifik.co/v2/biometric-validations

Con este servicio, puedes obtener todas las validaciones biométricas que has creado. También puedes incluir parámetros para filtrar las BiometricValidations por nombre o estado.

Headers

Name
Value

Content-Type

application/json

Authorization

Bearer <token>

Params

Name
Value
Description

page

1

you can define the page number if you have too many records.

perPage

20

How many records you need per page.

like_name

any string i.e. Postman

You can query a 'like' condition

where_status

Options are [failed, validated, sent, new, expired]

You can specify the value to filter by status.

Request

const axios = require('axios');
let data = '';

let config = {
  method: 'get',
  maxBodyLength: Infinity,
  url: 'https://api.verifik.co/v2/face-recognition/persons',
  headers: { 
    'Authorization': 'Bearer eyJhbVCJ9.eyJj...plt4Cw'
  },
  data : data
};

axios.request(config)
.then((response) => {
  console.log(JSON.stringify(response.data));
})
.catch((error) => {
  console.log(error);
});

Response

{
    "data": [
        {
            "_id": "65d39b294177f703fd93f636",
            "status": "validated",
            "type": "login",
            "livenessScore": 0,
            "requires2FA": false,
            "client": "613375a1eab2fe08527f81e2",
            "project": "6266193db77ccc8111730c90",
            "projectFlow": "658ed28b0990f300134d7b78",
            "livenessSession": "65d39b294177f703fd93f634",
            "url": "to_be_defined",
            "updatedAt": "2024-02-19T18:17:13.909Z",
            "createdAt": "2024-02-19T18:17:13.909Z",
            "__v": 0
        },
        ...
    ]
}

Last updated