NOTE: Currently the taxonomy terms are all hardcoded - see common/datamodel/jrc-taxonomy for details.
Fetch the names of projects that match against a given set of taxonomy terms. This is used in the UI to filter for EC JRC taxonomy terms.
- URL:
/api/v1/project/match
- Method:
POST
- URL Params:
n/a
- Body Params:
union
- String - Eitnerall
or anything else. Used for logical and/or-ing the result.tags
- [String] - Array of matching strings. If empty or not present, all projects will match.
- Body:
{
"union": "all",
"tags": "cryptology, incidentHandling"
}
- Status code:
200 OK
- Body Params:
status
- the status of the response in JSEND format, in this casesuccess
data
- The matching projects' Cyberwatching IDs
- Body:
{
"status": "success",
"data": [13, 22, 154]
}