1. Base URL
GET/Face-auth/{authId}/Image
2. Authentication
Include the FaceAuth project API key in thex-api-key header.
x-api-key
3. Request Example
Withcurl, the --location option is required to follow the redirect.
curl
python
4. Path Parameters
string
required
The key of the FaceAuth submission to download.
5. Response
5-1. Success
This endpoint responds with a redirect rather than a JSON body. On success it returns302 Found with the header below, and the body is empty.
result.http
string
A signed download URL. Follow it as-is — do not interpret or modify the value.
200 OK with the original face image data.
- The success response body is empty. Do not parse the
302as JSON. - The download URL expires after 5 minutes. If it has expired, call this API again to get a new one.
5-2. Failure
A failed image download returns an HTTP status code with an error object.6. Access and Deletion Policy
- If the FaceAuth project of the API key differs from the project of the submission, the response is
404, exactly as for a nonexistentauthId. - Submissions that have already been deleted, submissions with a
deleteTime, and submissions with no original image reference always return404. - After a DELETE completes, the image can no longer be downloaded through this API.
7. Error Responses
Errors returned by the ARGOS application use the{ code, message } format. 401 and some 403 responses are blocked at the authentication layer and do not follow that format — see FaceAuth Common Reference — Authentication layer errors.