get Customer Identity With
suspend fun getCustomerIdentityWith(customerIdentityId: String): Pair<CustomerIdentity?, NetworkingError?>
Retrieves an existing customer identity verification record by its identifier.
Return
A Pair where the first element is the matching CustomerIdentity on success, and the second element is a NetworkingError on failure; one of the two will be null.
Parameters
customer Identity Id
The unique identifier of the customer identity record to retrieve.
fun getCustomerIdentityWith(customerIdentityId: String, completionHandler: (CustomerIdentity?, NetworkingError?) -> Unit)
Retrieves an existing customer identity verification record by its identifier and delivers the result to the provided callback.
Parameters
customer Identity Id
The unique identifier of the customer identity record to retrieve.
completion Handler
Invoked with the matching CustomerIdentity on success, or a NetworkingError on failure; one of the two arguments will be null.