Delete/FaceAuth

  • 제출건의 이미지를 포함한 개인정보 데이터를 삭제합니다.

  • 단, 제출건의 고유 ID (authentication Id) 와 결과(auth_status), 제출시각(createTime) 은 유지됩니다.

Input Data

  • 반드시 Header에 faceAuth_project 전용 API-Key를 실어서 전송해야 합니다. (필수)

  • 삭제하려는 제출건의 authentication Id를 반드시 제출해야 합니다.

  • 요청 당 1건의 제출 건만 삭제할 수 있습니다.

  • 삭제된 제출 건은 대시보드의 상세보기가 불가능합니다.

ParameterFormatrequirementDescription

authId

string

required

단 건만 삭제 가능

Output Data

PropertiesFormatdescription

result

string

삭제 성공 시 “success” 메세지 반환

Request URL

curl -X DELETE "https://rest-api.argoskyc.com/v3/faceauth" \
-H "x-api-key: {yourAPIKey}" \

Sample Response

{
	message : "success"
}

Error Code

400 Error

Messagedescription

required key is missing

필수 파라미터가 누락된 경우: API-Key 및 authId 필수

error in processing data

제출 데이터 조회 중 에러가 발생한 경우

Cannot find submission. Please check input data.

해당하는 제출건이 존재하지 않는 경우

error in delete submission

데이터 삭제 중 에러가 발생한 경우

Last updated