forked from jaeksoft/opensearchserver
-
Notifications
You must be signed in to change notification settings - Fork 0
Search template list
AlexandreToyer edited this page Sep 30, 2013
·
2 revisions
This API returns the templates. A templates is a query stored with its parameters. It can be easily recalled using its name.
Requirement: OpenSearchServer v1.5
URL: /services/rest/index/{index_name}/search/template
Method: GET
Header (optional returned type):
- Accept:
application/json - Accept:
application/xml
The field list is returned either in JSON or XML format
HTTP code: 200
Content (application/json):
{
"successful": true,
"info": "2 template(s)",
"templates": [
{
"name": "my_search",
"type": "Search (pattern)"
},
{
"name": "my_search2",
"type": "Search (field)"
}
]
}The list was not returned. The reason is provided in the content.
HTTP code: 500
Content (text/plain):
An internal error occurred
Using CURL:
curl -XGET http://localhost:8080/services/rest/index/my_index/search/templateUsing jQuery:
$.ajax({
type: "GET",
dataType: "json",
url: "http://localhost:8080/services/rest/index/my_index/search/template"
}).done(function (data) {
console.log(data);
});