# CommentsManager
Reach these methods through the `comments` field on `client::Client`.
## list_file
`GET /files/{file_id}/comments`
| `file_id` | path | `String` | yes |
| `fields` | query | `Vec<String>` | no |
| `limit` | query | `i64` | no |
| `offset` | query | `i64` | no |
**Returns:** `Comments`
Paginated — `list_file(...)` returns a paginator you drive with `.next().await`, threading the cursor for you. See the [pagination guide](../pagination.md).
## get
`GET /comments/{comment_id}`
| `comment_id` | path | `String` | yes |
| `fields` | query | `Vec<String>` | no |
**Returns:** `CommentFull`
## update
`PUT /comments/{comment_id}`
| `comment_id` | path | `String` | yes |
| `fields` | query | `Vec<String>` | no |
**Request body** (`application/json`): `CommentUpdateRequest`
**Returns:** `CommentFull`
## delete
`DELETE /comments/{comment_id}`
| `comment_id` | path | `String` | yes |
**Returns:** no content
## create
`POST /comments`
| `fields` | query | `Vec<String>` | no |
**Request body** (`application/json`): `CommentCreateRequest`
**Returns:** `CommentFull`