> ## 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.

# サービス利用規約 リソース

サービス利用規約を管理するために使用される、一連のエンドポイント。

## サービス利用規約

1つのサービス利用規約に該当するとみなされるルートレベルのレコード。

<Accordion title="属性と例">
  | プロパティ         | 型              | 必須  | 説明                                                                       |
  | ------------- | -------------- | --- | ------------------------------------------------------------------------ |
  | `id`          | `string`       | はい  | このサービス利用規約の一意の識別子。                                                       |
  | `type`        | `enum<string>` | はい  | 値は常に`terms_of_service`になります。 使用可能なオプション: `terms_of_service`.             |
  | `status`      | `enum<string>` | いいえ | これらの利用規約が有効になっているかどうか。 使用可能なオプション: `enabled`, `disabled`.                |
  | `enterprise`  | `object`       | いいえ | Box Enterpriseのレプリゼンテーション。                                               |
  | `tos_type`    | `enum<string>` | いいえ | これらの利用規約を管理対象ユーザーに適用するか、外部ユーザーに適用するか。 使用可能なオプション: `managed`, `external`. |
  | `text`        | `string`       | いいえ | 利用規約のテキスト。`status`が`disabled`に設定されている場合は、このテキストが空になることがあります。             |
  | `created_at`  | `string`       | いいえ | リーガル項目が作成された日時。                                                          |
  | `modified_at` | `string`       | いいえ | リーガル項目が変更された日時。                                                          |

  ```json 例 theme={null}
  {
    "id": "11446498",
    "type": "terms_of_service",
    "status": "enabled",
    "enterprise": {
      "id": "11446498",
      "type": "enterprise",
      "name": "Acme Inc."
    },
    "tos_type": "managed",
    "text": "By using this service, you agree to ...",
    "created_at": "2012-12-12T10:53:43-08:00",
    "modified_at": "2012-12-12T10:53:43-08:00"
  }
  ```
</Accordion>

## サービス利用規約

サービス利用規約のリスト。

<Accordion title="属性と例">
  | プロパティ         | 型                      | 必須  | 説明                  |
  | ------------- | ---------------------- | --- | ------------------- |
  | `total_count` | `integer`              | いいえ | オブジェクトの合計数。         |
  | `entries`     | array of [サービス利用規約](#) | いいえ | サービス利用規約オブジェクトのリスト。 |

  ```json 例 theme={null}
  {
    "total_count": 2,
    "entries": [
      {
        "id": "11446498",
        "type": "terms_of_service",
        "status": "enabled",
        "enterprise": {
          "id": "11446498",
          "type": "enterprise",
          "name": "Acme Inc."
        },
        "tos_type": "managed",
        "text": "By using this service, you agree to ...",
        "created_at": "2012-12-12T10:53:43-08:00",
        "modified_at": "2012-12-12T10:53:43-08:00"
      }
    ]
  }
  ```
</Accordion>

## サービス利用規約 (Base)

1つのサービス利用規約に該当するとみなされるルートレベルのレコード。

<Accordion title="属性と例">
  | プロパティ  | 型              | 必須 | 説明                                                           |
  | ------ | -------------- | -- | ------------------------------------------------------------ |
  | `id`   | `string`       | はい | このサービス利用規約の一意の識別子。                                           |
  | `type` | `enum<string>` | はい | 値は常に`terms_of_service`になります。 使用可能なオプション: `terms_of_service`. |

  ```json 例 theme={null}
  {
    "id": "11446498",
    "type": "terms_of_service"
  }
  ```
</Accordion>
