Skip to main content
A set of endpoints that manage domains for which users can collaborate with files and folders in an enterprise.

Allowed collaboration domain

An entry that describes an approved domain for which users can collaborate with files and folders in your enterprise or vice versa.
PropertyTypeRequiredDescription
idstringNoThe unique identifier for this entry.
typeenum<string>NoThe value will always be collaboration_whitelist_entry. Available options: collaboration_whitelist_entry.
domainstringNoThe whitelisted domain.
directionenum<string>NoThe direction of the collaborations to allow. Available options: inbound, outbound, both.
enterpriseobjectNoA representation of a Box enterprise.
created_atstringNoThe time the entry was created at.
Example
{
  "id": "11446498",
  "type": "collaboration_whitelist_entry",
  "domain": "example.com",
  "direction": "both",
  "enterprise": {
    "id": "11446498",
    "type": "enterprise",
    "name": "Acme Inc."
  },
  "created_at": "2012-12-12T10:53:43-08:00"
}

Allowed collaboration domains

A list of allowed domains for collaboration.
PropertyTypeRequiredDescription
limitintegerNoThe 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_markerstringNoThe marker for the start of the next page of results. Can be null.
prev_markerstringNoThe marker for the start of the previous page of results. Can be null.
entriesarray of Allowed collaboration domainNoA list of allowed collaboration domains.
Example
{
  "limit": 1000,
  "next_marker": "JV9IRGZmieiBasejOG9yDCRNgd2ymoZIbjsxbJMjIs3kioVii",
  "prev_marker": "JV9IRGZmieiBasejOG9yDCRNgd2ymoZIbjsxbJMjIs3kioVih",
  "entries": [
    {
      "id": "11446498",
      "type": "collaboration_whitelist_entry",
      "domain": "example.com",
      "direction": "both",
      "enterprise": {
        "id": "11446498",
        "type": "enterprise",
        "name": "Acme Inc."
      },
      "created_at": "2012-12-12T10:53:43-08:00"
    }
  ]
}
Last modified on July 9, 2026