Hello,
I am trying to use the Content Server Rest API to search in content server.
I have found two alternatives for searching:
### search in a special location : full text search
POST https://servername/OTCS2/cs.exe/api/v2/search HTTP/1.1
OTDSTicket: {{ticket}}
Cache-Control: no-cache
where1=*&location_id1=1896817
### search in special location: full text with LQL
POST https://servername/OTCS2/cs.exe/api/v2/search HTTP/1.1
OTDSTicket: {{ticket}}
Cache-Control: no-cache
where=*%20and%20OTLocation%3A1896817
Now I would like to additonally search for documents that have the category "Studies", as shown in the search form below.
How are these search parameters for the Category translated for the API?
How would the POST request look like?
Thanks.