Returns the current terms of service text and settings for the enterprise.
managed
Limits the results to the terms of service of the given type.
Value is one of external
,managed
Returns a collection of terms of service text and settings for the enterprise.
An unexpected client error.
curl -i -X GET "https://api.box.com/2.0/terms_of_services" \
-H "authorization: Bearer <ACCESS_TOKEN>"
{
"entries": [
{
"id": "11446498",
"type": "terms_of_service",
"created_at": "2012-12-12T10:53:43-08:00",
"enterprise": {
"id": "11446498",
"name": "Acme Inc.",
"type": "enterprise"
},
"modified_at": "2012-12-12T10:53:43-08:00",
"status": "enabled",
"text": "By using this service, you agree to ...",
"tos_type": "managed"
}
],
"total_count": 2
}