Skip to main content
API version 2025.0 A standard representation of a Box Hub, as returned from any Box Hubs 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: 12345The unique identifier that represent a Box Hub.The ID for any Box Hub can be determined by visiting a Box Hub in the web application and copying the ID from the URL. For example, for the URL https://*.app.box.com/hubs/123 the hub_id is 123.
type
string
example: hubsThe value will always be hubs.Value is always hubs
can_non_owners_invite
boolean
example: trueIndicates if non-owners can invite others to the Box Hub.
example: trueIndicates if a shared link can be created for the Box Hub.
created_at
string(date-time)
example: 2012-12-12T10:53:43ZThe date and time when the folder was created. This value may be null for some folders such as the root folder or the trash folder.
created_by
object
The user who created this Box Hub.
description
string
example: All the contracts for the company.The description of the Box Hub. First 200 characters are returned.
is_ai_enabled
boolean
example: trueIndicates if AI features are enabled for the Box Hub.
is_collaboration_restricted_to_enterprise
boolean
example: trueIndicates if collaboration is restricted to the enterprise.
title
string
example: ContractsThe title given to the Box Hub.
updated_at
string(date-time)
example: 2012-12-12T10:53:43ZThe date and time when the Box Hub was last updated.
updated_by
object
The user who last modified this Box Hub.
view_count
integer(int32)
example: 506The number of views for the Box Hub.
{
  "id": "12345",
  "type": "hubs",
  "can_non_owners_invite": true,
  "can_shared_link_be_created": true,
  "created_at": "2012-12-12T10:53:43Z",
  "created_by": {
    "id": "11446498",
    "type": "user",
    "login": "[email protected]",
    "name": "Aaron Levie"
  },
  "description": "All the contracts for the company.",
  "is_ai_enabled": true,
  "is_collaboration_restricted_to_enterprise": true,
  "title": "Contracts",
  "updated_at": "2012-12-12T10:53:43Z",
  "updated_by": {
    "id": "11446498",
    "type": "user",
    "login": "[email protected]",
    "name": "Aaron Levie"
  },
  "view_count": 506
}