# SectionIdentifier Criterion

The [`SectionIdentifier` Search Criterion](https://doc.ibexa.co/en/latest/api/php_api/php_api_reference/classes/Ibexa-Contracts-Core-Repository-Values-Content-Query-Criterion-SectionIdentifier.html) searches for content based on the identifier of the Section it's assigned to.

## Arguments

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

## Example

### PHP

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

### REST API

**XML**

```
<Query>
    <Filter>
        <SectionIdentifierCriterion>sports</SectionIdentifierCriterion>
    </Filter>
</Query>
```

**JSON**

```
"Query": {
    "Filter": {
        "SectionIdentifierCriterion": "sports"
    }
}
```
