Face Registration

Create a person

Good to know: This API method allows your business to register a user and save their image with a unique identifier. The identifier would be used as a reference when making face recognition requests.

Create person

POST https://api.usetani.com/api/v0/person

Creates a new person.

Headers

NameTypeDescription

x-api-key*

string

Your API key

x-group-id*

string

Your group ID from the dashboard.

Request Body

NameTypeDescription

person_name*

string

The name of the person

client_id*

string

The unique ID of your user for reference.

{
    "message":"Person created successfully",
    "person_details": {
        "person_id": "string",
        "person_name": "string",
        "client_id": "string",
    }
}

Add an image to identify a person

Good to know: This request collects the image provided and stores the vector representation in our database.

Last updated