Terms of service user statuses
Update terms of service status for existing user
Updates the status for a terms of service for a user.
put/terms_of_service_user_statuses/{terms_of_service_user_status_id}
Path parameters
terms_of_service_user_status_idstring required
The ID of the terms of service status.
Request body
Example request
{
"is_accepted": true
}Response
Returns the updated terms of service status object.
Example response
{
"id": "11446498",
"type": "terms_of_service_user_status",
"tos": {
"id": "11446498",
"type": "terms_of_service"
},
"user": {
"id": "11446498",
"type": "user",
"name": "Aaron Levie",
"login": "ceo@example.com"
},
"is_accepted": true,
"created_at": "2012-12-12T10:53:43-08:00",
"modified_at": "2012-12-12T10:53:43-08:00"
}