Skip to content

RemoteId / ContentRemoteId Criterion

The RemoteId / ContentRemoteId Search Criterion searches for content based on its remote content ID.

Arguments

  • value - string(s) representing the remote IDs

Limitations

RemoteId can be used on all search engines.

Example

PHP

1
$query->query = new Criterion\RemoteId('abab615dcf26699a4291657152da4337');

REST API

1
2
3
4
5
<Query>
    <Filter>
        <ContentRemoteIdCriterion>abab615dcf26699a4291657152da4337</ContentRemoteIdCriterion>
    </Filter>
</Query>
 1
 2
 3
 4
 5
 6
 7
 8
 9
10
{
    "ViewInput": {
        "identifier": "ContentRemoteIdCriterionTest",
        "Query": {
            "Filter": {
                "ContentRemoteIdCriterion": "abab615dcf26699a4291657152da4337"
            }
        }
    }
}