# List a user's legal term acceptances

`GET https://api.cademi.com.br/api/v3/users/{user_id}/term-acceptances`

Operation ID: `users.term_acceptances.list` · API v3

Lists a user's acceptances across the platform legal term and all product legal terms. The collection can be filtered by acceptance date.

Each item includes `links.self`, which points to the acceptance under its legal term. Use that URL with the retrieve acceptance operation.

The `proof` object is included only when the credentials have the `legal_terms.read_proof` permission.

Required permissions: `legal_terms.read`.

## Parameters

| Name | In | Type | Required | Description |
|---|---|---|---|---|
| `user_id` | path | string | yes |  |
| `limit` | query | integer | no |  |
| `cursor` | query | string | no |  |
| `sort` | query | string, one of `id`, `-id` | no |  |
| `accepted_after` | query | string (date-time) | no |  |
| `accepted_before` | query | string (date-time) | no |  |

## Responses

### 200

Returns the collection of the user's legal term acceptances.

Body: `data`: array of TermAcceptance.

Fields of TermAcceptance:

| Field | Type | Required | Description |
|---|---|---|---|
| `accepted_at` | string (date-time) | yes |  |
| `id` | string | yes | Public ID, with the tac_ prefix. |
| `legal_term_id` | string | yes | Accepted legal term: trmplatform for the platform terms, or trmproduct_<id> for the terms of a product. |
| `links` | object | no | Present when the acceptance is listed under a user. self points to the canonical URL under /legal-terms. |
| `object` | string, one of `term_acceptance` | yes |  |
| `proof` | object | no | Proof of origin of the acceptance. Included only when the credentials have the legalterms.readproof permission. |
| `user_id` | string | yes | Public ID, with the usr_ prefix. |

### 400

The cursor is invalid or the request contains an unsupported query parameter.

Body: Error.

### 401

The credential is missing, malformed, expired, or revoked.

Body: Error.

### 403

The current credentials do not have the permission required by this operation.

Body: Error.

### 404

The user was not found or is not accessible with the current credentials.

Body: Error.

### 422

The request body or query parameters failed validation.

Body: ValidationFailed.

Full schema: https://cademi.dev/openapi/v3.json
