GET/Faceauth
An API to retrieve specific submissions or the entire submission list using filters such as authId, startDate, and endDate for efficient data retrieval.
1. Base URL
2. Authentication
Include the API key in the x-api-key header:
3. Request Example
4. Request Parameters
Used for retrieving a specific submission. If authId
is provided, only the corresponding submission is returned; otherwise, the full list is retrieved.
Start date of the query (yyyy-mm-dd
format). To filter data within a specific period, both startDate
and endDate
must be provided.
End date of the query (yyyy-mm-dd
format).
The authId
value from the nextPage_key
object in the response of the previous request.
The createTime
value from the nextPage_key
object in the response of the previous request.
Specifies the number of data entries to retrieve (minimum 1, maximum 2,000). If not provided, the default value is 2,000.
- Maximum retrieval limit: A single request can retrieve up to 2,000 entries.
- Fetching additional data: If more data is available, the response includes the
nextPage_key
object. To continue retrieving data, usenextPage_key
’sauthId
asnextKey_id
andcreateTime
asnextKey_date
in the next request.
5. Response
5-1. Response (delete_check: false)
5-2. Response (delete_check: true)
5-3. Response Data
FaceAuth project ID
List of retrieved submissions
6. Error Codes
If an error occurs, a 400 status code is returned along with details in the response body:
Error Code | Description |
---|---|
faceAuth_project not found | The submitted API-Key does not match any valid project. Please check if your API-Key is correct. |
Was this page helpful?