User
A standard representation of a user, as returned from any user API endpoints by default.Attributes and example
Attributes and example
| Property | Type | Required | Description |
|---|---|---|---|
id | string | Yes | The unique identifier for this user. |
type | enum<string> | Yes | The value will always be user. Available options: user. |
name | string | No | The display name of this user. |
login | string | No | The primary email address of this user. |
created_at | string | No | When the user object was created. |
modified_at | string | No | When the user object was last modified. |
language | string | No | The language of the user, formatted in modified version of the ISO 639-1 format. |
timezone | string | No | The user’s timezone. |
space_amount | integer | No | The user’s total available space amount in bytes. |
space_used | integer | No | The amount of space in use by the user. |
max_upload_size | integer | No | The maximum individual file size in bytes the user can have. |
status | enum<string> | No | The user’s account status. Available options: active, inactive, cannot_delete_edit, cannot_delete_edit_upload. |
job_title | string | No | The user’s job title. |
phone | string | No | The user’s phone number. |
address | string | No | The user’s address. |
avatar_url | string | No | URL of the user’s avatar image. |
notification_email | object | No | An alternate notification email address to which email notifications are sent. When it’s confirmed, this will be the email address to which notifications are sent instead of to the primary email address. Can be null. |
Example
User (Base)
A mini representation of a user, used when nested within another resource.Attributes and example
Attributes and example
| Property | Type | Required | Description |
|---|---|---|---|
id | string | Yes | The unique identifier for this user. |
type | enum<string> | Yes | The value will always be user. Available options: user. |
Example
User (Collaborations)
A mini representation of a user, can be returned only when the status ispending.
Attributes and example
Attributes and example
| Property | Type | Required | Description |
|---|---|---|---|
id | string | Yes | The unique identifier for this user. |
type | enum<string> | Yes | The value will always be user. Available options: user. |
name | string | No | The display name of this user. If the collaboration status is pending, an empty string is returned. |
login | string | No | The primary email address of this user. If the collaboration status is pending, a login value is returned. |
is_active | boolean | No | If set to false, the user is either deactivated or deleted. |
Example
User (Full)
A full representation of a user, as can be returned from any user API endpoint.Attributes and example
Attributes and example
| Property | Type | Required | Description |
|---|---|---|---|
id | string | Yes | The unique identifier for this user. |
type | enum<string> | Yes | The value will always be user. Available options: user. |
name | string | No | The display name of this user. |
login | string | No | The primary email address of this user. |
created_at | string | No | When the user object was created. |
modified_at | string | No | When the user object was last modified. |
language | string | No | The language of the user, formatted in modified version of the ISO 639-1 format. |
timezone | string | No | The user’s timezone. |
space_amount | integer | No | The user’s total available space amount in bytes. |
space_used | integer | No | The amount of space in use by the user. |
max_upload_size | integer | No | The maximum individual file size in bytes the user can have. |
status | enum<string> | No | The user’s account status. Available options: active, inactive, cannot_delete_edit, cannot_delete_edit_upload. |
job_title | string | No | The user’s job title. |
phone | string | No | The user’s phone number. |
address | string | No | The user’s address. |
avatar_url | string | No | URL of the user’s avatar image. |
notification_email | object | No | An alternate notification email address to which email notifications are sent. When it’s confirmed, this will be the email address to which notifications are sent instead of to the primary email address. Can be null. |
role | enum<string> | No | The user’s enterprise role. Available options: admin, coadmin, user. |
tracking_codes | array of Tracking code | No | Tracking codes allow an admin to generate reports from the admin console and assign an attribute to a specific group of users. This setting must be enabled for an enterprise before it can be used. |
can_see_managed_users | boolean | No | Whether the user can see other enterprise users in their contact list. |
is_sync_enabled | boolean | No | Whether the user can use Box Sync. |
is_external_collab_restricted | boolean | No | Whether the user is allowed to collaborate with users outside their enterprise. |
is_exempt_from_device_limits | boolean | No | Whether to exempt the user from Enterprise device limits. |
is_exempt_from_login_verification | boolean | No | Whether the user must use two-factor authentication. |
enterprise | object | No | A representation of a Box enterprise. |
my_tags | array of string | No | Tags for all files and folders owned by the user. Values returned will only contain tags that were set by the requester. |
hostname | string | No | The root (protocol, subdomain, domain) of any links that need to be generated for the user. |
is_platform_access_only | boolean | No | Whether the user is an App User. |
external_app_user_id | string | No | An external identifier for an app user, which can be used to look up the user. This can be used to tie user IDs from external identity providers to Box users. |
Example
User (Integration Mappings)
A user representation for integration mappings API purposes. Fields name and login are not required.Attributes and example
Attributes and example
| Property | Type | Required | Description |
|---|---|---|---|
id | string | Yes | The unique identifier for this user. |
type | enum<string> | Yes | The value will always be user. Available options: user. |
name | string | No | The display name of this user. |
login | string | No | The primary email address of this user. |
Example
User (Mini)
A mini representation of a user, as can be returned when nested within other resources.Attributes and example
Attributes and example
| Property | Type | Required | Description |
|---|---|---|---|
id | string | Yes | The unique identifier for this user. |
type | enum<string> | Yes | The value will always be user. Available options: user. |
name | string | No | The display name of this user. |
login | string | No | The primary email address of this user. |
Example
Users
A list of users.Attributes and example
Attributes and example
| Property | Type | Required | Description |
|---|---|---|---|
limit | integer | No | The limit that was used for these entries. This will be the same as the limit query parameter unless that value exceeded the maximum value allowed. The maximum value varies by API. |
next_marker | string | No | The marker for the start of the next page of results. Can be null. |
prev_marker | string | No | The marker for the start of the previous page of results. Can be null. |
total_count | integer | No | One greater than the offset of the last entry in the entire collection. The total number of entries in the collection may be less than total_count. This field is only returned for calls that use offset-based pagination. For marker-based paginated APIs, this field will be omitted. |
offset | integer | No | The 0-based offset of the first entry in this set. This will be the same as the offset query parameter. This field is only returned for calls that use offset-based pagination. For marker-based paginated APIs, this field will be omitted. |
order | array of object | No | The order by which items are returned. This field is only returned for calls that use offset-based pagination. For marker-based paginated APIs, this field will be omitted. |
entries | array of User (Full) | No | A list of users. |
Example
