> ## 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>`                                                     | はい  | 値は常に`terms_of_service_user_status`になります。 使用可能なオプション: `terms_of_service_user_status`. |
  | `tos`         | [サービス利用規約 (Base)](/ja/reference/terms-of-services-resources#-base) | いいえ | サービス利用規約。                                                                            |
  | `user`        | [ユーザー (Mini)](/ja/reference/users-resources#-mini)                 | いいえ | ユーザー。                                                                                |
  | `is_accepted` | `boolean`                                                          | いいえ | ユーザーがサービス利用規約に同意したかどうか。                                                              |
  | `created_at`  | `string`                                                           | いいえ | リーガル項目が作成された日時。                                                                      |
  | `modified_at` | `string`                                                           | いいえ | リーガル項目が変更された日時。                                                                      |

  ```json 例 theme={null}
  {
    "id": "11446498",
    "type": "terms_of_service_user_status",
    "tos": {
      "id": "11446498",
      "type": "terms_of_service"
    },
    "user": {
      "id": "11446498",
      "type": "user",
      "name": "Aaron Levie",
      "login": "ceo@example.com"
    },
    "is_accepted": true,
    "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_user_status",
        "tos": {
          "id": "11446498",
          "type": "terms_of_service"
        },
        "user": {
          "id": "11446498",
          "type": "user",
          "name": "Aaron Levie",
          "login": "ceo@example.com"
        },
        "is_accepted": true,
        "created_at": "2012-12-12T10:53:43-08:00",
        "modified_at": "2012-12-12T10:53:43-08:00"
      }
    ]
  }
  ```
</Accordion>
