> ## 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="属性と例">
  | プロパティ         | 型                                                  | 必須  | 説明                                                                                                     |
  | ------------- | -------------------------------------------------- | --- | ------------------------------------------------------------------------------------------------------ |
  | `id`          | `string`                                           | いいえ | この除外の一意の識別子。                                                                                           |
  | `type`        | `enum<string>`                                     | いいえ | 値は常に`collaboration_whitelist_exempt_target`になります。 使用可能なオプション: `collaboration_whitelist_exempt_target`. |
  | `enterprise`  | `object`                                           | いいえ | Box Enterpriseのレプリゼンテーション。                                                                             |
  | `user`        | [ユーザー (Mini)](/ja/reference/users-resources#-mini) | いいえ | 除外されているユーザー。                                                                                           |
  | `created_at`  | `string`                                           | いいえ | エントリが作成された日時。                                                                                          |
  | `modified_at` | `string`                                           | いいえ | エントリが変更された日時。                                                                                          |

  ```json 例 theme={null}
  {
    "id": "11446498",
    "type": "collaboration_whitelist_exempt_target",
    "enterprise": {
      "id": "11446498",
      "type": "enterprise",
      "name": "Acme Inc."
    },
    "user": {
      "id": "11446498",
      "type": "user",
      "name": "Aaron Levie",
      "login": "ceo@example.com"
    },
    "created_at": "2012-12-12T10:53:43-08:00",
    "modified_at": "2012-12-12T10:53:43-08:00"
  }
  ```
</Accordion>

## 許可されたコラボレーションドメインからユーザーを除外

この企業に許可されたコラボレーションドメインのリストによって課せられた制限から除外されるユーザーのリスト。

<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_exempt_target",
        "enterprise": {
          "id": "11446498",
          "type": "enterprise",
          "name": "Acme Inc."
        },
        "user": {
          "id": "11446498",
          "type": "user",
          "name": "Aaron Levie",
          "login": "ceo@example.com"
        },
        "created_at": "2012-12-12T10:53:43-08:00",
        "modified_at": "2012-12-12T10:53:43-08:00"
      }
    ]
  }
  ```
</Accordion>
