Profile

constructor(hash: String, displayName: String, profileUrl: URI, avatarUrl: URI, avatarAltText: String, location: String, description: String, jobTitle: String, company: String, verifiedAccounts: List<VerifiedAccount>, pronunciation: String, pronouns: String, links: List<Link>? = null, payments: ProfilePayments? = null, contactInfo: ProfileContactInfo? = null, gallery: List<GalleryImage>? = null, numberVerifiedAccounts: Int? = null, lastProfileEdit: Instant? = null, registrationDate: Instant? = null)

Parameters

hash

The SHA256 hash of the user's primary email address.

displayName

The user's display name. This is the name that is displayed on their profile.

profileUrl

The full URL for the user's profile.

avatarUrl

The URL for the user's avatar image if it has been set.

avatarAltText

The alt text for the user's avatar image if it has been set.

location

The user's location.

description

The about section on a user's profile.

jobTitle

The user's job title.

company

The user's current company's name.

verifiedAccounts

A list of verified accounts the user has added to their profile. This is limited to a max of 4 in unauthenticated requests.

pronunciation

The phonetic pronunciation of the user's name.

pronouns

The pronouns the user uses.

links

A list of links the user has added to their profile. This is only provided in authenticated API requests.

payments
contactInfo
gallery

Additional images a user has uploaded. This is only provided in authenticated API requests.

numberVerifiedAccounts

The number of verified accounts the user has added to their profile. This count includes verified accounts the user is hiding from their profile. This is only provided in authenticated API requests.

lastProfileEdit

The date and time (UTC) the user last edited their profile. This is only provided in authenticated API requests.

registrationDate

The date the user registered their account. This is only provided in authenticated API requests.