Skip to main content
Retrieve a list of tags with optional filtering.

Parameters

ParameterDescription
FiltersA filter parameter that accepts a subset of MongoDB-style queries to filter by. Supported operators may differ based on the field’s data type.

For Example:

* Find a tag by its name.
{
“name”: “string”
}
* Find tags that are either blue or green.
{
“color”: {
“$in”: [“blue”, “green”]
}
}
To learn more about building MongoDB queries, please visit MongoDB documentation.

Example Output

[
	{
		"name": "string",
		"color": "string",
		"appliedOn": "none"
	}
]

Workflow Library Example

List Tags with Netskope Cte and Send Results Via Email
Workflow LibraryPreview this Workflow on desktop