Skip to main content

1. Base URL

GET/FaceAuth/Image
  https://rest-api.argosidentity.com/v3/faceauth/image

2. Authentication

Include the API key in the x-api-key header:
x-api-key
  x-api-key: {yourAPIKey}

3. Request Example

GET/FaceAuth
  curl --location "https://rest-api.argosidentity.com/v3/faceauth/image?authId={yourAuthId}" \
  --header 'x-api-key: {yourAPIKey}'

4. Request Parameters

authId
string
required
The authId to download the image

5. Response

Returns a base64 encoded image.

5-1.Success Response

example.png
  /9j/4AAQSkZJRgABAQAAAQABAAD/4gHYSUNDX1BST0ZJTEUAAQEAAAHIAAAAAAQwAABtbnRyUkdCIFhZ...

5-2. Error Codes

If an error occurs, a 400 status code is returned along with details in the response body:
error.json
{
  traceId: '0199cb93-bdf1-77ef-8cd4-3d38dec61830',
  errorCode: 'NOT_FOUND',
  message: 'faceAuth_project not found'
}
Error CodeDescription
faceAuth_project not foundThis error occurs when there is no valid project corresponding to the submitted API-Key. Please check if your API-Key is correct.
authId is requiredThe authId parameter is missing from the request parameters.
I