Delete a Person

DELETE - https://api.verifik.co/v2/face-recognition/persons/{id}

To delete a specific person, make a DELETE request to the endpoint where {id} should be replaced with the unique identifier of the person you want to delete.

Headers

NameValue

Content-Type

application/json

Authorization

Bearer <token>

Response

{
  "data": {
    "__v": 0,
    "_id": "651743f2b2eaf872c3541417",
    "name": "Mateo Verifik",
    "notes": "Verifik employee",
    "client": "64404b1f9856cc8ce12bv457",
    "gender": "M",
    "deleted": true,
    "createdAt": "2023-09-29T21:38:59.479Z",
    "deletedAt": "2023-09-30T01:05:44.433Z",
    "updatedAt": "2023-09-30T01:05:44.435Z",
    "thumbnails": [
      {
        "id": "0a634411-717e-46c4-1x5c-8d7e8f92eef8",
        "thumbnail": "Base 64 Image"
      }
    ],
    "collections": [
      "test collection"
    ],
    "nationality": "Colombian",
    "date_of_birth": "1995-05-07T00:00:00.000Z"
  }
}

Last updated