New Omni documentation is now available — policy-driven document verification and API reference. Explore Omni → · Custom Theme for KYC liveform: Learn more →
New Omni documentation is now available — policy-driven document verification and API reference. Explore Omni → · Custom Theme for KYC liveform: Learn more →
Cargue y almacene una nueva imagen facial dentro de una colección específica
curl --request POST \
--url https://face.argosidentity.com/faces \
--header 'Content-Type: application/json' \
--header 'x-api-key: <api-key>' \
--data '
{
"collectionId": "col_123456789",
"userName": "John Doe",
"faceImage": "data:image/jpeg;base64,/9j/4AAQSkZJRgABAQAAAQ..."
}
'{
"message": "Face added successfully",
"faceId": "face_123456789",
"metaFaceId": "meta_123456789",
"option": {}
}La sección “Agregar un nuevo rostro a una colección” permite a los usuarios cargar y almacenar fácilmente una nueva imagen facial dentro de una colección específica. Al utilizar esta funcionalidad, los usuarios pueden gestionar y organizar eficientemente sus datos de reconocimiento facial agregando nuevos rostros a su base de datos existente. Esta sección optimiza el proceso de expandir colecciones con datos faciales adicionales para mejorar la precisión y eficiencia en aplicaciones de reconocimiento facial.Documentation Index
Fetch the complete documentation index at: https://developers.argosidentity.com/llms.txt
Use this file to discover all available pages before exploring further.
Unique identifier of the collection where the face will be added
"col_123456789"
Name associated with the face being added to the collection
"John Doe"
Base64-encoded string representation of the face image
"data:image/jpeg;base64,/9j/4AAQSkZJRgABAQAAAQ..."
Face successfully added to collection
Success message
"Face added successfully"
Unique identifier for the face submission
"face_123456789"
Unique identifier corresponding to the metadata of the face submission
"meta_123456789"
Additional options and metadata for the face submission
¿Esta página le ayudó?
curl --request POST \
--url https://face.argosidentity.com/faces \
--header 'Content-Type: application/json' \
--header 'x-api-key: <api-key>' \
--data '
{
"collectionId": "col_123456789",
"userName": "John Doe",
"faceImage": "data:image/jpeg;base64,/9j/4AAQSkZJRgABAQAAAQ..."
}
'{
"message": "Face added successfully",
"faceId": "face_123456789",
"metaFaceId": "meta_123456789",
"option": {}
}