Fetch the names of projects that match the given set of full-text search terms.
- URL:
/api/v1/project/search
- Method:
POST
- URL Params:
n/a
- Body Params:
case
- Boolean - If true, the search will be case sensitive, otherwise case will be ignored.terms
- [String] - String of whitespace separated search terms. Prefix a search term with '-' to return resilts that do not contain this term.
- Body:
{
"case": false,
"terms": "IOT -Blockchain"
}
- Status code:
200 OK
- Body Params:
status
- the status of the response in JSEND format, in this casesuccess
results
- The number of projects that match the search termsdata
- [Object] - Array of search result objectsname
- String - the name of the projectcw_id
- Number - The Cyberwatching ID for this projectrcn
- Number - The unique RCN number for the project as assigned by the EU.title
- String - the full project title.
- Body:
{
"status": "success",
"results": 18,
"data": [
{
"name": "CE-IoT",
"cw_id": 169,
"rcn": 212980,
"title": "A Framework for Pairing Circular Economy and IoT: IoT as an enabler of the Circular Economy circularity-by-design as an enabler for IoT (CE-IoT)",
"id": null
},
{
"name": "CREATE-IoT",
"cw_id": 187,
"rcn": 206371,
"title": "CROSS FERTILISATION THROUGH ALIGNMENT, SYNCHRONISATION AND EXCHANGES FOR IoT",
"id": null
},
...
]
}