POST/Submission

Definition

  • ARGOS ID check 를 진행하지 않고, 고객사가 직접 사용자의 ID check 데이터를 강제 삽입하는 형태로 Submission 을 생성합니다.

  • 해당 API 는 오직 String 데이터만 삽입할 수 있으며, 이미지 데이터는 ‘Put Image’ API 를 별도로 이용해야 합니다.

  • 해당 API 로 생성된 Submission 은 어떠한 OCR 및 Verification 도 진행하지 않습니다.

Input Data

암호화 옵션 사용 시 Input Data

  • Request Body 를 암호화 하여 API 요청

body : encrypt({
		email : 'string',
		fullName : 'string',
		issuingCountry : 'string',
		birthDate: 'string'
		...
	})


Output Data

암호화 옵션 사용 시 Output Data

  • Body 객체 내 ‘data’ 프로퍼티에 암호화 된 결과 반환

    response : {
       body : {
        "data": "encrypted-string",
        "isEncrypted": true
       }
    }

Error Codes (400 error)

Request URL

  • URL과 x-api-key를 반드시 입력해 주어야 합니다.

curl -X POST "<https://rest-api.argosidentity.com/v3/submission/migration>" \\
-H "x-api-key: {yourAPIKey}" \\

Sample Request

  • Body /Raw Json 형식으로 제출합니다.

  • 단 건 제출만 가능합니다.

curl --location '<https://rest-api.argosidentity.com/v3/submission/migration>' \\
--header 'Content-Type: application/json' \\
--header 'x-api-key: {yourAPIKey}' \\
--data-raw '{
  "admin": "admin@sample.com",
  "email": "migration@sample.com",
  "fullName": "홍길동",
  "birthDate": "2002-11-08",
  "issuingCountry": "KOR",
  "idType": "drivers_license",
  "kycStatus": "approved",
  "identityNumber": "021108-2222555",
  "nationality": "USA",
  "gender": "male",
  "issueDate": "2011-08-07",
  "expireDate": "2025-08-07",
  "documentNumber": "504862-11-20",
  "address_city": "Springfield",
  "address_country": "United states",
  "address_state": "Ohio",
  "address_street": "street 1-10",
  "address_full": "street 1-10, Springfield, Ohio",
  "cf1": "migration-comment1",
  "cf2": "migration-comment2",
  "cf3": "migration-comment3",
  "userid": "migrated-user2"
}
'

Sample Response

{
    "message": "success",
    "submissionId": "submissionId2_mg"
}

Last updated