Skip to main content
API version 2024.0 The association between a Terms of Service and a user.
id
string
example: 11446498The unique identifier for this terms of service user status.
type
string
example: terms_of_service_user_statusThe value will always be terms_of_service_user_status.Value is always terms_of_service_user_status
created_at
string(date-time)
example: 2012-12-12T10:53:43-08:00When the legal item was created.
is_accepted
boolean
example: trueIf the user has accepted the terms of services.
modified_at
string(date-time)
example: 2012-12-12T10:53:43-08:00When the legal item was modified.
tos
Terms of service (Base)object
The terms of service.
user
User (Mini)object
The user.
{
  "id": "11446498",
  "type": "terms_of_service_user_status",
  "created_at": "2012-12-12T10:53:43-08:00",
  "is_accepted": true,
  "modified_at": "2012-12-12T10:53:43-08:00",
  "tos": {
    "id": "11446498",
    "type": "terms_of_service"
  },
  "user": {
    "id": "11446498",
    "type": "user",
    "login": "[email protected]",
    "name": "Aaron Levie"
  }
}