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

Get a list of builds.

<Note>
  External Documentation

  To learn more, visit the [Plutora documentation](https://usapi.plutora.com/swagger/index.html#/Builds/Builds_GetBuilds).
</Note>

## Parameters

<div className="integrations-table">
  | Parameter        | Description                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      |
  | ---------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ |
  | Filter           | A query text to filter the results by, following the pattern: `[Field] [Operator] [Value]`.<br /><br />Multiple filters can be combined with commas, which act as logical AND.<br /><br />String values must be enclosed in single quotes.<br /><br />**Common operators include:**<br />\* `eq` — equal to<br />\* `ne` — not equal to<br />\* `lt` — less than<br />\* `le` — less than or equal to<br />\* `gt` — greater than<br />\* `ge` — greater than or equal to<br />\* `lk` — like (wildcard search, supports `%`)<br /><br />**Example:**<br /><br />`name lk 'Build%' , status eq 'Active'` - This will return builds with names starting with `Build` that are in `Active` status. |
  | Page Num         | The page to return results from. Starting from `0`.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              |
  | Records Per Page | The maximum number of results to return per page.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                |
  | Return All Pages | Automatically fetch all resources, page by page.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 |
</div>

## Example Output

```json theme={"dark"}
{
	"resultSet": [
		{
			"id": "00000000-0000-0000-0000-000000000000",
			"buildNumber": "string",
			"buildTag": "string",
			"branch": "string",
			"buildStatus": "SUCCESSFUL",
			"artifacts": "string",
			"commitNumber": "string",
			"commitCount": "string",
			"systemId": "00000000-0000-0000-0000-000000000000",
			"systemName": "string",
			"releaseId": "00000000-0000-0000-0000-000000000000",
			"releaseName": "string",
			"releaseIdentifier": "string",
			"releaseType": "Project",
			"releaseImplementationDate": "2025-09-11T12:47:16.783Z",
			"primaryExternalJobExecutionLogId": "00000000-0000-0000-0000-000000000000",
			"dateCreated": "2025-09-11T12:47:16.783Z",
			"lastModifiedUser": "string",
			"lastModified": "2025-09-11T12:47:16.783Z",
			"createdBy": "string"
		}
	],
	"returnCount": 0,
	"totalCount": 0,
	"pageNum": 0,
	"recordsPerPage": 0
}
```

## Workflow Library Example

[List Builds with Plutora and Send Results Via Email](https://library.blinkops.com/workflows/list-builds-with-plutora-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-builds-with-plutora-and-send-results-via-email/canvas" />
</div>
