> ## 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 Form Entries

Retrieve a list of form entries.

**Note:** This action only retrieves data and will not trigger background system workflows.

<Note>
  External Documentation

  To learn more, visit the [BMC Remedy documentation](https://docs.bmc.com/xwiki/bin/view/Service-Management/Innovation-Suite/AR-System/ars221/Developing-an-API-program/Integrating-AR-System-forms-with-a-third-party-application-by-using-the-REST-API/Endpoints-in-AR-REST-API/).
</Note>

## Parameters

<div className="integrations-table">
  | Parameter        | Description                                                                                                                                                                                             |
  | ---------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
  | Fields           | A comma-separated list of the fields to be returned for each object in the response.                                                                                                                    |
  | Form Name        | The name of the form to retrieve entries for.                                                                                                                                                           |
  | Limit            | The maximum number of results to return.                                                                                                                                                                |
  | Offset           | The pagination offset indicating the starting point for the next set of results.                                                                                                                        |
  | Query            | The query to filter results by.<br /><br />**Note:** Use `AND` or `OR` expressions to separate multiple search criteria.<br /><br />**For example:** `'Request ID' = "123AB" OR 'Status' = "Rejected"`. |
  | Return All Pages | Automatically fetch all resources, page by page.                                                                                                                                                        |
  | Sort             | The sort order and the field to sort by.<br />        <br />**For example:** `Submit Date.desc`.                                                                                                        |
</div>

## Example Output

```json theme={"dark"}
{
	"entries": [
		{
			"values": {
				"Request ID": "INC001|INC001",
				"Submitter": "svc_monitor",
				"Submit Date": "2024-05-12T08:31:14.000+0000",
				"Assignee Login ID": "ops_01",
				"Last Modified By": "sys_admin",
				"Last Modified Date": "2024-05-15T10:00:00.000+0000",
				"Status": "Closed",
				"Status-History": {
					"New": {
						"user": "svc_monitor",
						"timestamp": "2024-05-12T08:31:14.000+0000"
					},
					"Resolved": {
						"user": "ops_01",
						"timestamp": "2024-05-12T11:00:00.000+0000"
					},
					"Closed": {
						"user": "admin",
						"timestamp": "2024-05-15T09:00:00.000+0000"
					}
				},
				"Resolution Category": "Batch",
				"Owner Group": "L3-Support",
				"Assignee Groups": "1001;",
				"Site": "DC-01",
				"Resolution": "Issue: Lag. Fix: Re-run.",
				"Detailed Decription": "Job ALPHA late start.",
				"Priority": "Medium",
				"Urgency": "2-High",
				"Impact": "3-Limited",
				"Incident Number": "INC001",
				"Assignee": "John Doe",
				"Assigned Group": "L2-App",
				"Reported Source": "Monitoring",
				"Product Name": "App_Core",
				"Last Resolved Date": "2024-05-12T11:00:00.000+0000",
				"Reported Date": "2024-05-12T08:31:13.000+0000",
				"Closed Date": "2024-05-15T09:00:00.000+0000",
				"Entry ID": "INC001",
				"Service Type": "Infra_Event"
			},
			"_links": {
				"self": [
					{
						"href": ""
					}
				]
			}
		}
	],
	"_links": {
		"self": [
			{
				"href": ""
			}
		]
	}
}
```

## Workflow Library Example

[List Form Entries with Bmc Remedy and Send Results Via Email](https://library.blinkops.com/workflows/list-form-entries-with-bmc-remedy-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-form-entries-with-bmc-remedy-and-send-results-via-email/canvas" />
</div>
