@bebapps/rapyd-sdk
Version:
An un-official [Rapyd](https://rapyd.net) SDK for Node.js.
27 lines (26 loc) • 767 B
text/typescript
export interface CreateIdentityVerificationPageRequest {
/**
* ID of the wallet contact. String starting with **cont_**.
*/
contact: `cont_${string}`;
/**
* Two-letter ISO 3166-1 ALPHA-2 code for the country. Uppercase.
*/
country?: string;
/**
* ID of the Rapyd Wallet. String starting with **ewallet_**.
*/
ewallet: `ewallet_${string}`;
/**
* End of the time for completing the identity verification process, in [*Unix time*](ref:glossary). Default is 14 days.
*/
page_expiration?: number;
/**
* ID of the identity verification request. Must be unique for each request.
*/
reference_id: string;
/**
* Determines the action that is taken on the request. Default is **verify**.
*/
request_type?: string;
};