KycInfo: {
    firstName?: string;
    lastName?: string;
    idNumber?: string;
    dateOfBirth?: DateOfBirth;
    address?: Address;
}

Know Your Customer (KYC) information required for crypto operations.

Notes:

  • All fields are optional at the transport layer; provide the fields you have collected so far.
  • idNumber may be required depending on region/regulatory requirements (for US, this is SSN).

Type declaration

  • OptionalfirstName?: string

    Customer’s first name, if collected.

  • OptionallastName?: string

    Customer’s last name, if collected.

  • OptionalidNumber?: string

    Government ID number (e.g., SSN for US). May be required by region.

  • OptionaldateOfBirth?: DateOfBirth

    Customer’s date of birth, if collected.

  • Optionaladdress?: Address

    Customer’s address, if collected.