Skip to content

Users

A User serves as the primary entity and can possess multiple Profiles to represent different contexts or settings. A User can have one personal Profile and multiple business Profiles. Each Profile — whether personal or business — can have its own multi-currency account, enabling transactions across various currencies. This hierarchical structure allows for flexible management of user settings and financial operations, accommodating both personal and business needs.

User profile structure

User

Represents a Wise user account.

idinteger, (int64)

User ID.

Example:101
namestring or null

User's full name.

Example:"Example Person"
emailstring

User's email.

Example:"person@example.com"
activeboolean

If user is active or not.

Example:true
detailsobject or null

User details.

{ "id": 101, "name": "Example Person", "email": "person@example.com", "active": true, "details": { "firstName": "Example", "lastName": "Person", "phoneNumber": "+37111111111", "dateOfBirth": "1977-01-01", "occupation": "", "avatar": "https://lh6.googleusercontent.com/photo.jpg", "primaryAddress": 111, "address": { "countryCode": "EE", "firstLine": "Road 123", "postCode": "11111", "city": "Tallinn", "state": "", "occupation": "" } } }