# SectionId Criterion

> For the complete documentation index, see [llms.txt](https://doc.ibexa.co/en/saas/llms.txt).

SectionId Search Criterion

The `SectionId` Search Criterion searches for content based on the ID of the Section it's assigned to.

## Arguments

- `value` - int(s) representing the IDs of the Section(s)

## Example

### REST API

**XML**

```xml
<Query>
    <Filter>
        <SectionIdCriterion>3</SectionIdCriterion>
    </Filter>
</Query>
```

**JSON**

```json
"Query": {
    "Filter": {
        "SectionIdCriterion": "3"
    }
}
```
