Box Developer Documentation
 
    Latest version

    Add domain to list of allowed collaboration domains

    post
    https://api.box.com/2.0
    /collaboration_whitelist_entries

    This endpoint is in the version 2024.0. No changes are required to continue using it. For more details, see Box API versioning.

    Creates a new entry in the list of allowed domains to allow collaboration for.

    Request

    bearer [ACCESS_TOKEN]
    application/json

    Request Body

    stringin bodyrequired
    "inbound"

    The direction in which to allow collaborations.

    Value is one of inbound,outbound,both

    stringin bodyrequired
    "example.com"

    The domain to add to the list of allowed domains.

    Response

    Returns a new entry on the list of allowed domains.

    application/jsonClient error

    An unexpected client error.

    post
    Add domain to list of allowed collaboration domains
    You can now try out some of our APIs live, right here in the documentation.
    Log in

    Request Example

    cURL
    curl -i -X POST "https://api.box.com/2.0/collaboration_whitelist_entries" \
         -H "authorization: Bearer <ACCESS_TOKEN>" \
         -H "content-type: application/json" \
         -d '{
           "domain": "example.com",
           "direction": "inboud"
         }'

    Response Example

    {
      "id": "11446498",
      "type": "collaboration_whitelist_entry",
      "created_at": "2012-12-12T10:53:43-08:00",
      "direction": "both",
      "domain": "example.com",
      "enterprise": {
        "id": "11446498",
        "type": "enterprise",
        "name": "Acme Inc."
      }
    }