Skip to main content
Get a list of builds.
External DocumentationTo learn more, visit the Plutora documentation.

Parameters

ParameterDescription
FilterA query text to filter the results by, following the pattern: [Field] [Operator] [Value].

Multiple filters can be combined with commas, which act as logical AND.

String values must be enclosed in single quotes.

Common operators include:
* eq — equal to
* ne — not equal to
* lt — less than
* le — less than or equal to
* gt — greater than
* ge — greater than or equal to
* lk — like (wildcard search, supports %)

Example:

name lk 'Build%' , status eq 'Active' - This will return builds with names starting with Build that are in Active status.
Page NumThe page to return results from. Starting from 0.
Records Per PageThe maximum number of results to return per page.
Return All PagesAutomatically fetch all resources, page by page.

Example Output

{
	"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
Workflow LibraryPreview this Workflow on desktop
I