Skip to main content

Interface.IInvestService

Invest identity operations.

Properties

PropertyTypeDescription
create(data: { firstName: string; lastName: string; }) => Promise<{ account: string; createdAt: string; firstName: string; id: string; lastName: string; status: "ACTIVE" | "WAITING_KYC" | "KYC_DONE" | "REJECTED" | "DISABLED"; updatedAt: string; }>Creates a new invest identity.
getMe() => Promise< | { account: string; createdAt: string; firstName: string; id: string; lastName: string; status: "ACTIVE" | "WAITING_KYC" | "KYC_DONE" | "REJECTED" | "DISABLED"; updatedAt: string; } | null>Returns the current user's invest identity, or null if not found.