IndexSearch
POST/indices/search
Perform a search on a index; this is currently available for both folder and tag indices
Request
Query Parameters
siteId string
Site Identifier
limit string
Limit Results
Default value:
10
next string
Next page of results token
previous string
Previous page of results token
- application/json
Body
required
indexType string
The name of the index to search
Responses
- 200
- 400
200 OK
Response Headers
Access-Control-Allow-Origin
string
Access-Control-Allow-Methods
string
Access-Control-Allow-Headers
string
- application/json
- Schema
- Example (from schema)
Schema
Array [
]
next string
Next page of results token
previous string
Previous page of results token
values
object[]
List of search results
value string
value of index
{
"next": "string",
"previous": "string",
"values": [
{
"value": "string"
}
]
}
400 OK
- application/json
- Schema
- Example (from schema)
Schema
Array [
]
errors
object[]
List of errors
key string
Error Key
error string
Error Message
{
"errors": [
{
"key": "string",
"error": "string"
}
]
}
Loading...