Skip to main content
API version 2024.0 A standard representation of a user, as returned from any user API endpoints by default.
This resource has a few variations that can be encountered when using the API.The fields that are part of the standard variant are generally returned when the resource is requested via its own API endpoints. For example, when retrieving a file by ID, it will return these fields unless the fields parameter has been specified.
id
string
example: 11446498The unique identifier for this user.
type
string
example: userThe value will always be user.Value is always user
address
string
example: 900 Jefferson Ave, Redwood City, CA 94063The user’s address.
avatar_url
string
example: https://www.box.com/api/avatar/large/181216415URL of the user’s avatar image.
created_at
string(date-time)
example: 2012-12-12T10:53:43-08:00When the user object was created.
job_title
string
example: CEOThe user’s job title.
language
string
example: enThe language of the user, formatted in modified version of the ISO 639-1 format.
login
string(email)
example: [email protected]The primary email address of this user.
max_upload_size
integer(int64)
example: 2147483648The maximum individual file size in bytes the user can have.
modified_at
string(date-time)
example: 2012-12-12T10:53:43-08:00When the user object was last modified.
name
string
example: Aaron LevieThe display name of this user.
notification_email
object
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.
phone
string
example: 6509241374The user’s phone number.
space_amount
integer(int64)
example: 11345156112The user’s total available space amount in bytes.
space_used
integer(int64)
example: 1237009912The amount of space in use by the user.
status
string
example: activeThe user’s account status.Value is one of active,inactive,cannot_delete_edit,cannot_delete_edit_upload
timezone
string(timezone)
example: Africa/BujumburaThe user’s timezone.
{
  "id": "11446498",
  "type": "user",
  "address": "900 Jefferson Ave, Redwood City, CA 94063",
  "avatar_url": "https://www.box.com/api/avatar/large/181216415",
  "created_at": "2012-12-12T10:53:43-08:00",
  "job_title": "CEO",
  "language": "en",
  "login": "[email protected]",
  "max_upload_size": 2147483648,
  "modified_at": "2012-12-12T10:53:43-08:00",
  "name": "Aaron Levie",
  "notification_email": {
    "email": "[email protected]",
    "is_confirmed": true
  },
  "phone": "6509241374",
  "space_amount": 11345156112,
  "space_used": 1237009912,
  "status": "active",
  "timezone": "Africa/Bujumbura"
}