Skip to content
For AI agents: the complete documentation index is available at llms.txt; this page is also available as Markdown at index.md.

ContentTypeIdentifier Criterion

The ContentTypeIdentifier Search Criterion searches for content based on the identifier of its content type.

Arguments

  • value - string(s) representing the content type identifier(s)

Example

REST API

1
2
3
4
5
<Query>
    <Filter>
        <ContentTypeIdentifierCriterion>article</ContentTypeIdentifierCriterion>
    </Filter>
</Query>
1
2
3
4
5
"Query": {
    "Filter": {
        "ContentTypeIdentifierCriterion": "article"
    }
}