action aucklandmuseum_get_search { label: "Perform simple search queries over Auckland Museum Collections and Cenotaph data" description: "Use this endpoint to perform simple search queries for finding information and subjects you may be interested in\n\nSearches performed via this endpoint run against an [Elastic](www.elastic.co) server. This endpoint mirrors the Elastic search API documented [here](https://www.elastic.co/guide/en/elasticsearch/reference/1.5/search-search.html)\n\nUse the\n - `collectionsonline` index to perform searches over other all\nCollections data\n - `cenotaph` index to perform searches over Cenotaph data\n" provider: aucklandmuseum method: GET path: "/search/{index}/{operation}" encoding: json input: { type: "object" properties: { index: { type: "string" } operation: { type: "string" } q: { type: "string" } } required: ["index", "operation"] additionalProperties: false } output: { type: "object" additionalProperties: true } }