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

# Get File Comments

Retrieves a list of comments for a file.

## Basic Parameters

<div className="integrations-table">
  | Parameter | Description                                   |
  | --------- | --------------------------------------------- |
  | File ID   | The unique identifier that represents a file. |
</div>

## Advanced Parameters

<div className="integrations-table">
  | Parameter | Description                                                                                                                                                |
  | --------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------- |
  | Fields    | A comma-separated list of attributes to include in the response. This can be used to request fields that are not normally returned in a standard response. |
  | Limit     | The maximum number of items to return per page.                                                                                                            |
  | Offset    | The offset of the item at which to begin the response.                                                                                                     |
</div>

## Example Output

```json theme={"dark"}
{
	"entries": [
		{
			"created_at": "2012-12-12T10:53:43-08:00",
			"created_by": {
				"id": "11446498",
				"login": "ceo@example.com",
				"name": "Aaron Levie",
				"type": "user"
			},
			"id": "11446498",
			"is_reply_comment": true,
			"item": {
				"id": "11446498",
				"type": "file"
			},
			"message": "@Aaron Levie these tigers are cool!",
			"modified_at": "2012-12-12T10:53:43-08:00",
			"type": "comment"
		}
	],
	"limit": 1000,
	"offset": 2000,
	"order": [
		{
			"by": "type",
			"direction": "ASC"
		}
	],
	"total_count": 5000
}
```

## Workflow Library Example

[Get File Comments with Box and Send Results Via Email](https://library.blinkops.com/workflows/get-file-comments-with-box-and-send-results-via-email)

<div className="iframe-wrapper">
  <div className="iframe-media">
    <img src="https://mintcdn.com/blinkops-2/ojHYuDeYX5FWuN8a/img/Icons/play-box.svg?fit=max&auto=format&n=ojHYuDeYX5FWuN8a&q=85&s=b8af968e71438a9499c3223c9bd29fb2" alt="Workflow Library" width="16" height="16" data-path="img/Icons/play-box.svg" />

    Preview this Workflow on desktop
  </div>

  <iframe className="iframe" src="https://library.blinkops.com/workflows/get-file-comments-with-box-and-send-results-via-email/canvas" />
</div>
