I have this function
@GET(\"/users?filters[0][field]={param}&filters[0][operator]=equals&filters[0][value]={value}\") UserDto retrieveUsersByFilte
Don't put your values directly in the path, but prefer in the method signature. Not completely sure, but try something like this :
@GET("/users?filters[0][operator]=equals") UserDto retrieveUsersByFilters(@Path("filters[0][field]") String nameFilter, @Path("filters[0][value]") String value);