Skip to main content
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.
PropertyTypeRequiredDescription
idstringYesThe unique identifier for this terms of service user status.
typeenum<string>YesThe value will always be terms_of_service_user_status. Available options: terms_of_service_user_status.
tosTerms of service (Base)NoThe terms of service.
userUser (Mini)NoThe user.
is_acceptedbooleanNoIf the user has accepted the terms of services.
created_atstringNoWhen the legal item was created.
modified_atstringNoWhen the legal item was modified.
Example
{
  "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"
}

Terms of service user statuses

A list of terms of service user statuses.
PropertyTypeRequiredDescription
total_countintegerNoThe total number of objects.
entriesarray of Terms of service user statusNoA list of terms of service user statuses.
Example
{
  "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"
    }
  ]
}
Last modified on July 9, 2026