Skip to main content

Biometry API 1.6.0

Biometry-related operations.

Base path: https://{controller_ip}/api/v1. API description version: 1.6.0.

Examples use placeholder values for passwords, tokens, UUIDs, addresses and secrets. Replace them with values from your controller before sending requests.

Section methods

MethodPath
POST/biometry/generate_convolution

POST /biometry/generate_convolution

Section: Biometry.

Creates a record or starts an operation for the biometry endpoint /biometry/generate_convolution.

Request example

curl -k -X POST "https://{controller_ip}/api/v1/biometry/generate_convolution" \
-H "Authorization: Bearer <token>" \
-H "Content-Type: application/json" \
--data-raw '{
"person_uuid": "<person_uuid>",
"image": "<base64_image>"
}'

Request body example

{
"person_uuid": "<person_uuid>",
"image": "<base64_image>"
}

Response command example

curl -k -sS -X POST "https://{controller_ip}/api/v1/biometry/generate_convolution" \
-H "Authorization: Bearer <token>" | jq .

Response example

{
"status": "success",
"data": {
"uuid": "<uuid>"
}
}