Retrieves an overview of users and their status for a terms of service, including Whether they have accepted the terms and when.
324234
The ID of the terms of service.
123334
Limits results to the given user ID.
Returns a list of terms of service statuses.
An unexpected client error.
curl -i -X GET "https://api.box.com/2.0/terms_of_service_user_statuses?tos_id=324234" \
-H "authorization: Bearer <ACCESS_TOKEN>"
{
"entries": [
{
"created_at": "2012-12-12T10:53:43-08:00",
"id": "11446498",
"is_accepted": true,
"modified_at": "2012-12-12T10:53:43-08:00",
"tos": {
"id": "11446498",
"type": "terms_of_service"
},
"type": "terms_of_service_user_status",
"user": {
"id": "11446498",
"type": "user",
"login": "ceo@example.com",
"name": "Aaron Levie"
}
}
],
"total_count": 2
}