Skip to main content
JSON
1
2
3
4
5
6
7
8
9
10
11
12
13
14
POST: /api/delivery/projects/{projectId}/entries/search { "where": [ { "field": "title", "contains": "Batman" }, { "field": "runtime", "greaterThan": 200 } ] }
JSON
1
2
3
4
5
6
7
8
9
10
{ "where": [{ "field": "location", "distanceWithin": { "lat": "52.36700505", "lon": "-2.72304296", "distance": "10.5mi" } }] }
JSON
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{ "where": [ { "field": "title", "contains": "Batman" }, { "or": [ { "field": "releaseDate", "greaterThan": 1960 }, { "field": "tagline", "contains": "gotham" } ] } ] }
JSON
1
2
3
4
5
{ "orderBy": [{ "asc": "releaseDate" }], }
JSON
1
2
3
4
5
{ "orderBy": [{ "desc": "releaseDate" }], }
JSON
1
2
3
4
{ "pageSize": 50, "pageIndex": 1 }
JSON
1
2
3
4
5
6
7
8
9
POST: /api/delivery/projects/{projectId}/entries/search { "where": [ { "field": "*", "equalTo": "Interstellar" } ] }
JSON
1
2
3
4
5
6
7
8
9
POST: /api/delivery/projects/{projectId}/entries/search { "where": [ { "field": "movieQuote.source", "equalTo": "Bruce Willis" } ] }
JSON
1
2
3
4
5
6
7
8
9
10
11
12
13
{ "where": [{ "field": "location", "distanceWithin": { "lat": "52.36700505", "lon": "-2.72304296", "distance": "10.5mi" } }], "orderBy": [{ "asc": "location" }] }
JSON
1
2
3
4
5
"location": { "lat" : 51.209347, "lon" : -2.6445979000000079, "distance" : 83.292260807739808 }
JSON
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
POST: /api/delivery/projects/{projectId}/entries/search { "where": [ { "field": "title", "contains": "Batman", "weight": 100 }, { "field": "synopsis", "freeText": "gotham", "weight": 30 }, { "field": "runtime", "greaterThan": 200 } ], "orderBy": [ { "desc": "releaseDate" } ], "pageIndex": 1, "pageSize": 50 }
JSON
1
2
3
4
5
6
{ "fields": [ "title", "synopsis" ] }
JSON
1
2
3
4
5
6
{ "fields": [ "sys.uri", "sys.owner" ] }
JSON
1
GET: /api/delivery/projects/{projectId}/entries/search?where=[{"field":"title","contains":"Batman"},{"field":"runtime","greaterThan":200}]
JSON
1
2
GET: /api/delivery/projects/{projectId}/entries/search?where=[{"field":"title","contains":"Batman"},{"field":"runtime","greaterThan":200}]&orderBy=[{"asc":"title"}]&pageSize=10&pageIndex=0&fields=entryTitle,entryDescription&linkDepth=1&fieldLinkDepths={"director":2}
JSON
1
GET: /api/delivery/projects/{projectId}/entries/search?where=%5B%7B%22field%22%3A%22title%22%2C%22contains%22%3A%22Batman%22%7D%2C%7B%22field%22%3A%22runtime%22%2C%22greaterThan%22%3A200%7D%5D
JSON
1
GET: /api/delivery/projects/{projectId}/entries/search?where=%5B%7B%22field%22%3A%22title%22%2C%22contains%22%3A%22Batman%22%7D%2C%7B%22field%22%3A%22runtime%22%2C%22greaterThan%22%3A200%7D%5D%26orderBy%3D%5B%7B%22asc%22%3A%22title%22%7D%5D%26pageSize%3D10%26pageIndex%3D0%26fields%3DentryTitle%2CentryDescription&linkDepth=1&fieldLinkDepths=%7B%22director%22%3A2%7D

Still need help?

New support request