Skip to content

Latest commit

 

History

History
41 lines (29 loc) · 768 Bytes

File metadata and controls

41 lines (29 loc) · 768 Bytes
description ContentName Search Criterion

ContentName Criterion

The ContentName Search Criterion searches for content by its name.

Arguments

  • value - string representing the content name, the wildcard character * can be used for partial search

Example

PHP

$query->query = new Criterion\ContentName('*phone');

REST API

=== "XML"

```xml
<Query>
    <Filter>
        <ContentNameCriterion>*phone</ContentNameCriterion>
    </Filter>
</Query>
```

=== "JSON"

```json
"Query": {
    "Filter": {
        "ContentNameCriterion": "*phone"
    }
}
```