Search via API is not returning empty while there are documents which match criteria

Search via API is not returning empty while there are documents which match criteria

For a company application i'm designing a search and move program. For this program I need to search a document with a name containing a value. In my case I search for documents which contain the word VERWIJDEREN.

The request I send is:
  1. https://zohoapis.eu/workdrive/api/v1/teams/{teamid}/records?search%5Bname%5D=VERWIJDEREN&filter%5Btype%5D=allfiles&filter%5BparentId%5D={parentFolderId}&page%5Blimit%5D=50&page%5Boffset%5D=0
{teamid} is my team ID and {parentFolderId} is the id of the folder where I want to search in.

My Document is:


However what I try my query only results empty:

  1. {
        "data": []
    }

I can't resolve the problem. Can someone help me out?