Return a list of assets.

Basic Parameters

ParameterDescription
FiltersFilter assets by specifying the field ID to filter by, and a list of values to include.Example:[ { "id": "name", "includeValues": ["Asset_Name"] }]
LimitLimit the returned number of results.
OffsetUse this to paginate through results. Insert the nextOffset value from the previous response to retrieve the next batch of results.

Advanced Parameters

ParameterDescription
OrderChoose the order in which to sort the results.
Order ColumnsSelect the column to sort by.

Example Output

{
	"count": 0,
	"items": [
		{
			"addedAt": 0,
			"addedBy": {
				"id": "string",
				"name": "User Name"
			},
			"assetStatus": 0,
			"assetType": 0,
			"assignedDeployment": {
				"id": "EntityId",
				"name": "Entity Name"
			},
			"assignedDeploymentId": "string",
			"breakGlassActivated": false,
			"distinguishedName": "string",
			"domain": "domain.local",
			"environmentGroup": {
				"id": "EntityId",
				"name": "Entity Name"
			},
			"fqdn": "laptoppc.domain.local",
			"guid": "string",
			"healthState": {
				"healthIssuesList": [
					{
						"details": "string",
						"issueCode": 0
					}
				],
				"healthStatus": 0
			},
			"id": "a:a:6d020055",
			"identityProtectAt": 0,
			"identityProtectedAt": 0,
			"identityProtectionState": 0,
			"inactiveReason": 0,
			"inactiveSince": 0,
			"ipV4Addresses": [
				"1.1.1.1"
			],
			"ipV6Addresses": [
				"string"
			],
			"lastLogonReplicated": 0,
			"name": "laptoppc",
			"operatingSystem": "Windows 10 Pro",
			"passwordUpdateTime": 0,
			"preferredDeployment": {
				"id": "EntityId",
				"name": "Entity Name"
			},
			"preferredDeploymentId": "string",
			"principalName": "string",
			"protectAt": 0,
			"protectedAt": 0,
			"protectionState": 0,
			"rpcMonitored": false,
			"rpcProtectAt": 0,
			"rpcProtectedAt": 0,
			"rpcProtectionState": 0,
			"servicePrincipleNames": [
				"string"
			],
			"sid": "string",
			"source": 0,
			"state": {
				"assetId": "string",
				"identityProtectAt": 0,
				"identityProtectedAt": 0,
				"identityProtectionState": 0,
				"isAssetConnected": false,
				"lastConnectedAt": 0,
				"lastDisconnectedAt": 0,
				"protectAt": 0,
				"protectedAt": 0,
				"protectionState": 0,
				"rpcProtectAt": 0,
				"rpcProtectedAt": 0,
				"rpcProtectionState": 0
			},
			"userAccountControl": 0
		}
	],
	"nextCursor": "string",
	"nextOffset": 0
}

Workflow Library Example

List Assets with Zero Networks and Send Results Via Email

Preview this Workflow on desktop