...
On This Page
| Table of Contents |
|---|
Overview
To filter items by metadata, the target platform must support metadata. If the target platform does not support metadata, the "Metadata Content" custom filter will be disabled.
...
[Property]="Text"
[Property]=Numeric Value
...
Identify the Columns to Filter on
Populate the property name value that corresponds with metadata content column.
| Code Block |
|---|
{
"transfer" : {
"metadata_map": {
"schemas": [
{
"mappings": [
{
"source": {
"property": {
"name": "LName",
"type": "string"
}
},
"destination": {
"property": {
"name": "LName",
"type": "string"
}
}
}
]
}
]
}
}
} |
...
Filter Using REST API
If the target platform does not support metadata, the filter or text definition for the given connection will be ignored.
...
Text (text) values must be in a string format with quotes around the value escaped and brackets around the field name (e.g. "[ProtectionLevel]=\"Sensitive\""). Numeric values do not need to be contained in quotes.
Attributes
Operator ( | Description | Equivalent |
|
| ||||||
|---|---|---|---|---|---|---|---|---|---|---|
| equals |
|
|
| ||||||
| not equals |
|
|
| ||||||
| less than |
|
|
| ||||||
| less than or equal to |
|
|
| ||||||
| greater than |
|
|
| ||||||
| greater than or equal to |
|
|
| ||||||
| starts with |
|
|
| ||||||
| does not start with |
|
|
| ||||||
| ends with |
|
|
| ||||||
| does not end with |
|
|
| ||||||
| contains |
|
|
| ||||||
| does not contain |
|
|
| ||||||
| includes all the |
|
|
| ||||||
| does not include all the |
|
|
| ||||||
| the |
|
|
| ||||||
| the |
|
|
|
Example 1
The following example will exclude any files on the source from being transferred to the destination that have a metadata field named "ProtectionLevel" with value "Sensitive.”
...