getCustomerIdentityWith

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

customerIdentityId

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

customerIdentityId

The unique identifier of the customer identity record to retrieve.

completionHandler

Invoked with the matching CustomerIdentity on success, or a NetworkingError on failure; one of the two arguments will be null.