Skip to main content1
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
}
]
}
1
2
3
4
5
6
7
8
9
10
{
"where": [{
"field": "location",
"distanceWithin": {
"lat": "52.36700505",
"lon": "-2.72304296",
"distance": "10.5mi"
}
}]
}
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"
}
]
}
]
}
1
2
3
4
5
{
"orderBy": [{
"asc": "releaseDate"
}],
}
1
2
3
4
5
{
"orderBy": [{
"desc": "releaseDate"
}],
}
1
2
3
4
{
"pageSize": 50,
"pageIndex": 1
}
1
2
3
4
5
6
7
8
9
POST: /api/delivery/projects/{projectId}/entries/search
{
"where": [
{
"field": "*",
"equalTo": "Interstellar"
}
]
}
1
2
3
4
5
6
7
8
9
POST: /api/delivery/projects/{projectId}/entries/search
{
"where": [
{
"field": "movieQuote.source",
"equalTo": "Bruce Willis"
}
]
}
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"
}]
}
1
2
3
4
5
"location": {
"lat" : 51.209347,
"lon" : -2.6445979000000079,
"distance" : 83.292260807739808
}
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
}
1
2
3
4
5
6
{
"fields": [
"title",
"synopsis"
]
}
1
2
3
4
5
6
{
"fields": [
"sys.uri",
"sys.owner"
]
}
1
GET: /api/delivery/projects/{projectId}/entries/search?where=[{"field":"title","contains":"Batman"},{"field":"runtime","greaterThan":200}]
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
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
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