KycInstance

Members

api : KycApi

The KycApi instance that this object was created with.

id : string

The ID of this KYC instance.

Methods

constructor(api, id)

Create a new instance of the KycInstance object.

  • api must be an instance of KycApi;

  • id must be the ID of a KYC Instance;

This constructor should not be called directly, use ApplicationReference.createKycRequest() or ApplicationReference.listKycRequests() instead.

async status()

Get the status of this KYC instance.

This function returns a KycStatus object.

const kycStatus = await kycInstance.status()

Last updated