API Project search always returning unrelated projects

Hi,

I'm just trying to do a basic project seach using postman to test out some functionality that I would like to implement. I need to search for a project name and grab all the project groups ids that match that name.

I am doing a post with the following request:

{{apiUrl}}/projects/search?Token={{sessionId}}&fields=id,name,projectGroupId

The body of the request I'm using is basic to the Endpoint documentation for WorldServer11.5:

[
    {
        "field":"name",
        "type":"TEXT",
        "criterion":{
            "value""test"
        }
    }
]
No matter what I put for "value" I get back results that do not match the body of the request at all. For example the first result from this request noted is:
"items": [
        {
            "id"205740,
            "projectGroupId"93743,
            "name""00000 - DO NOT TRANSLATE - 042213"
        },
00000 - DO NOT TRANSLATE - 042213 doens't contain "test" so not sure why the serach request is not working at all.
Any trouble shooting advice/help would be great.
emoji
Parents Reply Children
No Data