Skip to main content
API version 2024.0 The root-level record that is supposed to represent a single Terms of Service.
This resource has a few variations that can be encountered when using the API.The fields that are part of the standard variant are generally returned when the resource is requested via its own API endpoints. For example, when retrieving a file by ID, it will return these fields unless the fields parameter has been specified.
id
string
example: 11446498The unique identifier for this terms of service.
type
string
example: terms_of_serviceThe value will always be terms_of_service.Value is always terms_of_service
created_at
string(date-time)
example: 2012-12-12T10:53:43-08:00When the legal item was created.
enterprise
object
The enterprise these terms apply to.
modified_at
string(date-time)
example: 2012-12-12T10:53:43-08:00When the legal item was modified.
status
string
example: enabledWhether these terms are enabled or not.Value is one of enabled,disabled
text
string
example: By using this service, you agree to ...The text for your terms and conditions. This text could be empty if the status is set to disabled.
tos_type
string
example: managedWhether to apply these terms to managed users or external users.Value is one of managed,external
{
  "id": "11446498",
  "type": "terms_of_service",
  "created_at": "2012-12-12T10:53:43-08:00",
  "enterprise": {
    "id": "11446498",
    "type": "enterprise",
    "name": "Acme Inc."
  },
  "modified_at": "2012-12-12T10:53:43-08:00",
  "status": "enabled",
  "text": "By using this service, you agree to ...",
  "tos_type": "managed"
}