# List progress adjustments

`GET https://api.cademi.com.br/api/v3/users/{user_id}/products/{product_id}/progress/adjustments`

Operation ID: `users.products.progress.adjustments.list` · API v3

Returns the progress adjustments recorded for the user in a product, using cursor-based pagination.

Each adjustment identifies its author as either an administrator (`admin`) or an API credential (`credential`).

Required permissions: `progress.read`.

## Parameters

| Name | In | Type | Required | Description |
|---|---|---|---|---|
| `user_id` | path | string | yes |  |
| `product_id` | path | string | yes |  |
| `limit` | query | integer | no |  |
| `cursor` | query | string | no |  |

## Responses

### 200

Returns a page of progress adjustments.

Body: `data`: array of ProgressAdjustment.

Fields of ProgressAdjustment:

| Field | Type | Required | Description |
|---|---|---|---|
| `author` | object | yes |  |
| `created_at` | string (date-time) | yes |  |
| `id` | string | yes |  |
| `object` | string, one of `progress_adjustment` | yes |  |
| `product_id` | string | yes |  |
| `reason` | string | yes |  |
| `result` | object | yes |  |
| `type` | string, one of `reset` | yes |  |
| `user_id` | string | yes |  |

### 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 or product 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
