Skip to content

Latest commit

 

History

History
42 lines (30 loc) · 867 Bytes

File metadata and controls

42 lines (30 loc) · 867 Bytes
description RemoteId / ContentRemoteId Search Criterion

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

Example

PHP

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

REST API

=== "XML"

```xml
<Query>
    <Filter>
        <ContentRemoteIdCriterion>abab615dcf26699a4291657152da4337</ContentRemoteIdCriterion>
    </Filter>
</Query>
```

=== "JSON"

```json
"Query": {
    "Filter": {
        "ContentRemoteIdCriterion": "abab615dcf26699a4291657152da4337"
    }
}
```