> ## Documentation Index
> Fetch the complete documentation index at: https://developer.box.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Find Terms for Collaboration

export const Link = ({href, children, className, ...props}) => {
  const localizedHref = localizeLink(href);
  return <a href={localizedHref} className={className} {...props}>
      {children}
    </a>;
};

Information about the Terms of Service that is in effect for any
<Link href="/reference/resources/collaboration">Collaboration</Link> can be inspected by calling the
<Link href="/reference/get-collaborations-id">`GET /collaborations/:id`</Link> API and passing the query
parameter `fields=acceptance_requirements_status`.

```sh cURL theme={null}
curl -X GET https://api.box.com/2.0/collaborations/2342342?fields=acceptance_requirements_status \
    -H "authorization: Bearer <ACCESS_TOKEN>"
```

The resulting response will include a new `acceptance_requirements` object that
includes a mini `terms_of_service` object.

```json theme={null}
{
  "type": "collaboration",
  "id": 2342342>,
  "acceptance_requirements": {
    "terms_of_service": {
      "type": "terms_of_service",
      "id": 6766677
    }
  }
}
```

<Info>
  This information is only returned if the Terms of Service for external users is
  enabled for the enterprise, and the user making the request has the
  <Link href="/guides/security/terms-of-service/permissions">permission</Link> to see the Terms of Service. This holds true for
  both admin and end users, even though admins can generally view Terms of User
  information via the API even if the specific Terms of Service type is
  turned off.
</Info>

If the Terms of Service type is not enabled, the API will return an empty
result.

```json theme={null}
{
  "type": "collaboration",
  "id": 2342342>,
  "acceptance_requirements": {
    "terms_of_service": null
  }
}
```

<Info>
  The `terms_of_service` information is returned within the
  `acceptance_requirements` even if they have already been accepted by the user.
</Info>
