LinkUserInfo: {
    email: string;
    phone: string;
    country: string;
    fullName?: string;
}

Information used to register a new Link user for crypto onramp.

Notes:

  • phone must be in E.164 format (e.g., +12125551234).
  • country must be a two-letter ISO 3166-1 alpha-2 code.
  • fullName should be collected for users outside the US; otherwise optional.

Type declaration

  • email: string

    The user's email address.

  • phone: string

    The user's phone in E.164 format (e.g., +12125551234).

  • country: string

    Two-letter country code (ISO 3166-1 alpha-2).

  • OptionalfullName?: string

    Full name of the user. Recommended for non-US users.