API Docs

v1.1.0

Update Face

Update face registration information.

PUT /api/face/{reference_id}

Payload

{
    "name":"John Doe",
    "email":"johndoe@domain.com"
}

name / email / phone / document / company / company_document / country / city / address (All fields are varchar)

200 Response

{
    "message": "Face updated"
}

404 Response - The reference_id mentioned does not exist in this project.

{
    "message": "Face not found"
}

400 Response - Any other validation error.

{
    "message": "Validation errors"
}