v1

latestOpenAPI 3.0.2Apache-2.02026-07-142963051.0 MB
Terms of service user statuses

List terms of service user statuses

Retrieves an overview of users and their status for a terms of service, including Whether they have accepted the terms and when.

get/terms_of_service_user_statuses

Query parameters

tos_idstring required

The ID of the terms of service.

user_idstring

Limits results to the given user ID.

Response

Returns a list of terms of service statuses.

total_countinteger

The total number of objects.

Example response

{
  "total_count": 2,
  "entries": [
    {
      "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"
    }
  ]
}