Query Tags problem

Greetings, does anyone have an idea of what the query would be like?

curl -i ‘http://localhost:7557/devices?query={“Tags”:“Jose_Flores_Calderon”}&projection=DeviceID.ID

HTTP/1.1 400 Bad Request
GenieACS-Version: 1.2.9+20220822165235
Date: Wed, 22 Nov 2023 04:33:57 GMT
Connection: keep-alive
Keep-Alive: timeout=5
Transfer-Encoding: chunked

SyntaxError: Unexpected token : in JSON at position 15

You need to URL encode your query.

http://localhost:7557/devices?query=%7B%22Tags%22%3A%22Jose_Flores_Calderon%22%7D&projection=DeviceID.ID

ok thanks :grinning: