Box Developer Documentation
 
    Latest version

    Get terms of service

    get
    https://api.box.com/2.0
    /terms_of_services/:terms_of_service_id

    This endpoint is in the version 2024.0. No changes are required to continue using it. For more details, see Box API versioning.

    Fetches a specific terms of service.

    Request

    bearer [ACCESS_TOKEN]
    application/json

    Path Parameters

    stringin pathrequired
    324234

    The ID of the terms of service.

    Response

    application/jsonTerms of service

    Returns a terms of service object.

    application/jsonClient error

    An unexpected client error.

    get
    Get terms of service
    You can now try out some of our APIs live, right here in the documentation.
    Log in

    Request Example

    cURL
    curl -i -X GET "https://api.box.com/2.0/terms_of_services/324234" \
         -H "authorization: Bearer <ACCESS_TOKEN>"

    Response Example

    {
      "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"
    }