> ## Documentation Index
> Fetch the complete documentation index at: https://developer.box.com/llms.txt
> Use this file to discover all available pages before exploring further.

# コラボレーションに対するドメインを制限 リソース

ユーザーが企業のファイルやフォルダでコラボレーションできるドメインを管理する、一連のエンドポイント。

## 許可されたコラボレーションドメイン

コラボレーションが許可されたドメインのリスト。

<Accordion title="属性と例">
  | プロパティ         | 型                               | 必須  | 説明                                                                             |
  | ------------- | ------------------------------- | --- | ------------------------------------------------------------------------------ |
  | `limit`       | `integer`                       | いいえ | これらのエントリで使用された制限値。許容される最大値を超えていない限り、クエリパラメータの`limit`と等しくなります。最大値はAPIによって異なります。 |
  | `next_marker` | `string`                        | いいえ | 次の検索結果ページの開始場所のマーカー。 `null` を指定できます。                                           |
  | `prev_marker` | `string`                        | いいえ | 前の検索結果ページの開始場所のマーカー。 `null` を指定できます。                                           |
  | `entries`     | array of [許可されたコラボレーションドメイン](#) | いいえ | 許可されたコラボレーションドメインのリスト。                                                         |

  ```json 例 theme={null}
  {
    "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"
      }
    ]
  }
  ```
</Accordion>

## 許可されたコラボレーションドメイン

ユーザーが社内のファイルやフォルダでコラボレーションできる (またはコラボレーションできない) 承認済みドメインを表すエントリ。

<Accordion title="属性と例">
  | プロパティ        | 型              | 必須  | 説明                                                                                     |
  | ------------ | -------------- | --- | -------------------------------------------------------------------------------------- |
  | `id`         | `string`       | いいえ | このエントリの一意の識別子。                                                                         |
  | `type`       | `enum<string>` | いいえ | 値は常に`collaboration_whitelist_entry`になります。 使用可能なオプション: `collaboration_whitelist_entry`. |
  | `domain`     | `string`       | いいえ | 許可リストに登録されるドメイン。                                                                       |
  | `direction`  | `enum<string>` | いいえ | 許可するコラボレーションの方向。 使用可能なオプション: `inbound`, `outbound`, `both`.                            |
  | `enterprise` | `object`       | いいえ | Box Enterpriseのレプリゼンテーション。                                                             |
  | `created_at` | `string`       | いいえ | エントリが作成された日時。                                                                          |

  ```json 例 theme={null}
  {
    "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"
  }
  ```
</Accordion>
