Skip to content

SectionIdentifier Criterion

The SectionIdentifier Search Criterion searches for content based on the identifier of the Section it is assigned to.

Arguments

  • value - string(s) representing the identifiers of the Section(s)

Example

PHP

1
$query->query = new Criterion\SectionIdentifier(['sports', 'news']);

REST API

1
2
3
4
5
<Query>
    <Filter>
        <SectionIdentifierCriterion>sports</SectionIdentifierCriterion>
    </Filter>
</Query>
1
2
3
4
5
"Query": {
    "Filter": {
        "SectionIdentifierCriterion": "sports"
    }
}