Skip to main content
A set of endpoints used to manage terms of service agreements.

Terms of service

The root-level record that is supposed to represent a single Terms of Service.
PropertyTypeRequiredDescription
idstringYesThe unique identifier for this terms of service.
typeenum<string>YesThe value will always be terms_of_service. Available options: terms_of_service.
statusenum<string>NoWhether these terms are enabled or not. Available options: enabled, disabled.
enterpriseobjectNoA representation of a Box enterprise.
tos_typeenum<string>NoWhether to apply these terms to managed users or external users. Available options: managed, external.
textstringNoThe text for your terms and conditions. This text could be empty if the status is set to disabled.
created_atstringNoWhen the legal item was created.
modified_atstringNoWhen the legal item was modified.
Example
{
  "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"
}

Terms of service (Base)

The root-level record that is supposed to represent a single Terms of Service.
PropertyTypeRequiredDescription
idstringYesThe unique identifier for this terms of service.
typeenum<string>YesThe value will always be terms_of_service. Available options: terms_of_service.
Example
{
  "id": "11446498",
  "type": "terms_of_service"
}

Terms of services

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