Skip to main content
Get the results of a search.
External DocumentationTo learn more, visit the LogRhythm documentation.

Parameters

ParameterDescription
FieldsA comma-separated list of the fields to return in the response.
Page NumberThe page number to begin paginating from (zero-based).
Page SizeThe maximum number of results to return per page.
Search GUIDThe task ID to retrieve the search result of. Can be obtained by using the Initiate Search action.
SortAn array of sorting objects to sort the search results by. Each object must include the fieldName and the order (desc|asc) properties.

For example:
[
{
“fieldName”: “Field1”,
“order”: “asc”
},
{
“fieldName”: “Field2”,
“order”: “desc”
}
]

Example Output

[
	{
		"statusCode": 0,
		"statusMessage": "string",
		"responseMessage": "string",
		"allLogsCount": 0,
		"filteredLogsCount": 0,
		"items": [
			{}
		]
	}
]

Workflow Library Example

Get Search Results with Logrhythm and Send Results Via Email
Workflow LibraryPreview this Workflow on desktop