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

# Terms of service user statuses resources

A set of endpoints used to manage the status of terms of service for a particular user.

## Terms of service user status

The association between a Terms of Service and a user.

<Accordion title="Attributes and example">
  | Property      | Type                                                                                    | Required | Description                                                                                                 |
  | ------------- | --------------------------------------------------------------------------------------- | -------- | ----------------------------------------------------------------------------------------------------------- |
  | `id`          | `string`                                                                                | Yes      | The unique identifier for this terms of service user status.                                                |
  | `type`        | `enum<string>`                                                                          | Yes      | The value will always be `terms_of_service_user_status`. Available options: `terms_of_service_user_status`. |
  | `tos`         | [Terms of service (Base)](/reference/terms-of-services-resources#terms-of-service-base) | No       | The terms of service.                                                                                       |
  | `user`        | [User (Mini)](/reference/users-resources#user-mini)                                     | No       | The user.                                                                                                   |
  | `is_accepted` | `boolean`                                                                               | No       | If the user has accepted the terms of services.                                                             |
  | `created_at`  | `string`                                                                                | No       | When the legal item was created.                                                                            |
  | `modified_at` | `string`                                                                                | No       | When the legal item was modified.                                                                           |

  ```json Example 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>

## Terms of service user statuses

A list of terms of service user statuses.

<Accordion title="Attributes and example">
  | Property      | Type                                                                   | Required | Description                               |
  | ------------- | ---------------------------------------------------------------------- | -------- | ----------------------------------------- |
  | `total_count` | `integer`                                                              | No       | The total number of objects.              |
  | `entries`     | array of [Terms of service user status](#terms-of-service-user-status) | No       | A list of terms of service user statuses. |

  ```json Example 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>
