Connection GetUniqueValues Method BlueCielo Meridian Connection API 2013 Reference Guide | BlueCielo ECM Solutions
Collect a set of unique non-empty values for a given custom property on a given set of documents.

Namespace: ICMeridianAPI
Assembly: ICMeridianAPI (in ICMeridianAPI.dll) Version: 1.0.6.0 (1.0.6.0)
Syntax

public Object GetUniqueValues(
	string vaultidentifier,
	string SelectCustomPropertyName,
	string Wildcard = "*.*",
	Object documenttypenames = null,
	Object properties = null,
	Object criterias = null,
	Object values = null
)

Parameters

vaultidentifier
Type: OnlineSystem String
The vault in which the search will be performed.
SelectCustomPropertyName
Type: OnlineSystem String
Name of the custom property the request is for.
Wildcard (Optional)
Type: OnlineSystem String
Optional. Wildcard for document names, by delault all documents (*.*)
documenttypenames (Optional)
Type: OnlineSystem Object
Optional. Array of names of document types to restrict the search to. By default no restriction.
properties (Optional)
Type: OnlineSystem Object
Optional. Array of property names of criteria.
criterias (Optional)
Type: OnlineSystem Object
Optional. Array of criterion definitions.
values (Optional)
Type: OnlineSystem Object
Optional. Array of values for the criteria.

Return Value

Array of unique non-empty values of the requested property.
Remarks

The arrays of properties, criteria and values can either be all left unspecified, or they all should be arrays of the same length.
See Also