> ## 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.

# List Ticket Attachments

List all attachments associated with a specific ticket.

<Note>
  External Documentation

  To learn more, visit the [Zoho Desk documentation](https://desk.zoho.com/DeskAPIDocument#TicketAttachments#TicketAttachments_ListTicketAttachments).
</Note>

## Parameters

<div className="integrations-table">
  | Parameter        | Description                                                                          |
  | ---------------- | ------------------------------------------------------------------------------------ |
  | From             | The index number starting from which the attachments must be fetched. Starts at `1`. |
  | Is Public        | Select to filter attachments by their public or private visibility.                  |
  | Limit            | The maximum number of attachments to get per page. Valid range is `1` to `100`.      |
  | Return All Pages | Automatically fetch all resources, page by page.                                     |
  | Sort By          | Sort attachments by the `Created Time` attribute. Defaults to ascending order.       |
  | Ticket ID        | The ID of the ticket.<br /><br />Can be obtained from the `List Tickets` action.     |
</div>

## Example Output

```json theme={"dark"}
{
	"data": [
		{
			"creator": {
				"firstName": "Jade",
				"lastName": "Tywin",
				"photoURL": "https://desk.zoho.com/api/v1/agents/1892000000047001/photo?orgId=298902",
				"id": "1892000000047001",
				"email": "jade@zylker.com"
			},
			"size": "1079",
			"creatorId": "1892000000047001",
			"name": "issues.txt",
			"createdTime": "2013-11-06T10:25:03.000Z",
			"isPublic": true,
			"id": "1892000000047041",
			"href": "https://desk.zoho.com/api/v1/tickets/1892000001004024/attachments/1892000000047041/content"
		},
		{
			"creator": {
				"firstName": "Jade",
				"lastName": "Tywin",
				"photoURL": "https://desk.zoho.com/api/v1/agents/1892000000047001/photo?orgId=298902",
				"id": "1892000000047001",
				"email": "jade@zylker.com"
			},
			"size": "135222",
			"creatorId": "1892000000047001",
			"name": "guidelines.pdf",
			"createdTime": "2014-03-05T06:16:15.000Z",
			"isPublic": true,
			"id": "1892000000089041",
			"href": "https://desk.zoho.com/api/v1/tickets/1892000001004024/attachments/1892000000089041/content"
		},
		{
			"creator": {
				"firstName": "Jade",
				"lastName": "Tywin",
				"photoURL": "https://desk.zoho.com/api/v1/agents/1892000000047001/photo?orgId=298902",
				"id": "1892000000047001",
				"email": "jade@zylker.com"
			},
			"size": "97951",
			"creatorId": "1892000000042001",
			"name": "CreditHistory.pdf",
			"createdTime": "2016-06-21T10:15:34.000Z",
			"isPublic": false,
			"id": "1892000001052021",
			"href": "https://desk.zoho.com/api/v1/tickets/1892000001004024/attachments/1892000001052021/content"
		},
		{
			"creator": {
				"firstName": "Jade",
				"lastName": "Tywin",
				"photoURL": "https://desk.zoho.com/api/v1/agents/1892000000047001/photo?orgId=298902",
				"id": "1892000000047001",
				"email": "jade@zylker.com"
			},
			"size": "97951",
			"creatorId": "1892000000042001",
			"name": "values.txt",
			"createdTime": "2016-06-21T10:15:49.000Z",
			"isPublic": false,
			"id": "1892000001052025",
			"href": "https://desk.zoho.com/api/v1/tickets/1892000001004024/attachments/1892000001052025/content"
		}
	]
}
```

## Workflow Library Example

[List Ticket Attachments with Zoho Desk and Send Results Via Email](https://library.blinkops.com/workflows/list-ticket-attachments-with-zoho-desk-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/list-ticket-attachments-with-zoho-desk-and-send-results-via-email/canvas" />
</div>
