🤹Get verification info
Fetch the verification information and use it for identity verification purposes.
Use the imp_uid
obtained through integrated identity verification to get the customer's verification information.
STEP 01. Get verification ID (imp_uid) on the server-side
The following server-side code fetches the data returned from identity verification.
STEP 02. Get verification information
To get verification information from the i'mport server, you must first get a REST API access token. Use the access token
and imp_uid
(verification ID) to call the Get identity verification info REST API that returns the verification information as follows:
STEP 03. Using verification information
Retrieve the following user information from the verification information and add the necessary service logic.
name
: namegender
: gender (to be supported)birth
: date of birthunique_key
: same as CI value - unique key to identify the user, such as online social security number.
Besides what is listed above, other user information, such as foreigner status, is not provided. Kakao's policy prohibits the provision of the CI value when using the Kakao Certificate.
Get the user information and use it as needed. For example, you can use it to check age restrictions as follows:
Last updated