🤹4. Get verification info
Fetch the verification information and use it for identity verification purposes.
Use the imp_uid
obtained through 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.unique_in_site
: same as DI value - unique key to identify the user per Merchant ID (website).
unique_key and unique_in_site
Even if multiple credit cards are used to verify the same person, the same unique_key
and unique_in_site
values are returned for the cards under the same name.
Last updated