A user is an individual with access to Atono, identified by a unique email address. You can retrieve information about a user, such as their name, invitation status, and account timestamps.
User attributes
Field | Type | Description |
---|---|---|
createdAt | datetime (ISO 8601) | The date and time the user account was created. |
updatedAt | datetime (ISO 8601) | The date and time the user’s information (e.g., name, status, or roles) was last updated. |
invitedAt | datetime (ISO 8601) | The date and time the user was sent an invitation to join the workspace. |
email | string | The user’s email address. Must be unique across all users. |
fullName | string | The user’s full name, entered as a single field. |
deleted | boolean | Indicates whether the user has been deleted. |
Example JSON for user
user
{
"data": {
"type": "user",
"id": "fe4641d7-c72a-4165-904d-89b2ded40916",
"attributes": {
"createdAt": "2024-08-10T00:45:55Z",
"updatedAt": "2024-08-10T00:46:58Z",
"invitedAt": "2025-01-23T22:58:21Z",
"email": "[email protected]",
"fullName": "Oliver Resonance",
"deleted": false
}
},
"links": {
"self": "/api/v1/users/fe4641d7-c72a-4165-904d-89b2ded40916"
}
}