# LocationRemoteId Criterion

The [`LocationRemoteId` Search Criterion](https://doc.ibexa.co/en/latest/api/php_api/php_api_reference/classes/Ibexa-Contracts-Core-Repository-Values-Content-Query-Criterion-LocationRemoteId.html) searches for content based in the location remote ID.

## Arguments

- `value` - string(s) representing the location remote ID(s)

## Example

### PHP

```
$query->query = new Criterion\LocationRemoteId(['4d1e5f216c0a7aaab7f005ffd4b6a8a8', 'b81ef3e62b514188bfddd2a80d447d34']);
```

### REST API

**XML**

```
<Query>
    <Filter>
        <LocationRemoteIdCriterion>3aaeefdb0ae573ac91f6d6ea78d230b7</LocationRemoteIdCriterion>
    </Filter>
</Query>
```

**JSON**

```
"Query": {
    "Filter": {
        "LocationRemoteIdCriterion": "3aaeefdb0ae573ac91f6d6ea78d230b7"
    }
}
```
