Users
Users are the representation of human administrators on the platform. They can become members of organizations and own spaces.
The endpoint specific to your user offers more functionality than the one generic to any user.
Access: To view a user, you must share an organization with them.
Users must not be confused with identities, which represent the people speaking on the audios uploaded to the platform.
Fields
The UUID of the user. Is unique.
uuid
00000000-0000-0000-0000-000000000000
The handle of the user. Is unique.
user-a
The alias of the user.
User A
The email of the user. Is unique.
user.a@email.com
Indicates whether the email of the user has been verified.
true
The state of the user.
UserState (string)
Possible values: [verified
, unverified
, blocked
]
verified
The number of organizations of the user.
int32
10
The number of spaces of the user.
int32
10
The date and time when the user was created.
date-time
2023-01-01T00:00:00.000000Z
{
"id": "00000000-0000-0000-0000-000000000000",
"handle": "user-a",
"alias": "User A",
"email": "user.a@email.com",
"emailVerified": true,
"state": "verified",
"orgs": 10,
"spaces": 10,
"createdAt": "2023-01-01T00:00:00.000000Z"
}