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 →
특정 컬렉션 내에 새로운 얼굴 이미지를 업로드하고 저장
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": {}
}“컬렉션에 새 얼굴 추가” 섹션을 통해 사용자는 특정 컬렉션 내에 새로운 얼굴 이미지를 쉽게 업로드하고 저장할 수 있습니다. 이 기능을 활용하여 사용자는 기존 데이터베이스에 새로운 얼굴을 추가하여 얼굴 인식 데이터를 효율적으로 관리하고 구성할 수 있습니다. 이 섹션은 얼굴 인식 애플리케이션에서 정확도와 효율성을 향상시키기 위해 추가 얼굴 데이터로 컬렉션을 확장하는 프로세스를 간소화합니다.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
이 페이지가 도움이 되었나요?
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": {}
}