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 →
Upload and store a new facial image within a specific collection
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": {}
}The “Add a new face to a collection” section allows users to easily upload and store a new facial image within a specific collection. By utilizing this functionality, users can efficiently manage and organize their facial recognition data by adding new faces to their existing database. This section streamlines the process of expanding collections with additional facial data for enhanced accuracy and efficiency in facial recognition applications.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
Was this page helpful?
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": {}
}