user_api.v1.User
type User
User
user_api.v1.User
user_api.v1.User
Field | Type | Description | ||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
uuid | string | Unique identifier of the user for internal use. | ||||||||||||
first_name | string | First name of the user. | ||||||||||||
last_name | string | Last name of the user. | ||||||||||||
string | Email address of the user. | |||||||||||||
role | Role enum |
| ||||||||||||
avatar | string | Avatar URL of the user. | ||||||||||||
phone | string | Phone number of the user. | ||||||||||||
dids | string repeated | W3C Decentralized Identifiers (DIDs) associated to the user. | ||||||||||||
external_ids | ExternalIdsEntry repeated | External system identifiers associated to the user. Ex UserID from the user's financial institution. | ||||||||||||
metadata | Struct | Additional data about the user such as account, address, branch, routing info, etc. | ||||||||||||
account | string | Account number of the user. |
{
"uuid": "UUID",
"first_name": "John",
"last_name": "Doe",
"email": "[email protected]",
"role": 0,
"avatar": "AVATAR_URL",
"phone": "+1 555 555 5555",
"dids": [
"did:method-name:zDIDMultibase58Encoded",
"did:method-name:zDIDMultibase58Encoded"
],
"external_ids": [
{
"key": "KEY1",
"value": "VALUE1"
},
{
"key": "KEY2",
"value": "VALUE2"
}
],
"metadata": {
"fields": [
{
"key": "VALUE"
}
]
},
"account": "15436675"
}