| description | ContentId Search Criterion |
|---|
The ContentId Search Criterion searches for content by its ID.
value- int(s) representing the Content ID(s)
$query->query = new Criterion\ContentId([62, 64]);=== "XML"
```xml
<Query>
<Filter>
<ContentIdCriterion>1,52</ContentIdCriterion>
</Filter>
</Query>
```
=== "JSON"
```json
"Query": {
"Filter": {
"ContentIdCriterion": "1,52"
}
}
```