A user is a person that is defined and managed under an organization and is identified in the system by its unique ID, the UUID.
The following table describes the fields in the REST API messages for users:
Field | Type | Description |
---|---|---|
id | string | The UUID. A unique ID of the user. |
created_at | date | The creation time of the user. Standard format of timestamp with a time zone. ISO_8601 |
updated_at | date | The time when the user details were last updated. Standard format of timestamp with a time zone. ISO_8601 |
first_name | string | The first name of the user. |
last_name | string | The last name of the user. |
full_name | string | The full name of the user. |
date_joined | date | The date the user joined with Auth0 authentication system. |
string | The email of the user. | |
email_verified | boolean | Indicates whether the user's email has been verified by the user. |
is_active | boolean | If this user is active or not. |
is_admin | boolean | If this user is admin or not. |
spending_limit | object | The spending limits for this wallet. see Spending Limits objects below. |
token | object | The tokens for this user. See Tokens Object |
organization_id | string | The organization id this user belongs to. See Organization Object |
Spending Limit Object
Chagit
Field | Type | Description |
---|---|---|
allowance | number | How much can be spent within the period |
interval | number | * HOUR * DAY * WEEK * MONTH * ONE_TIME - infinite period |
amount_pending | number | Amount that was requested to be spent within the current spending interval. |
amount_spent | number | Amount that was confirmed to be spent within the current spending interval. |
contract | object | The contract id this spending limits belongs to. See Contact Object |
user | object | The user id this spending limits belongs to. See User Object |
read more at Spending Limits