See this example taken from here:
params = {
'query': 'type:ticket status:open',
'sort_by': 'created_at',
'sort_order': 'asc'
}
url = 'https://your_subdomain.zendesk.com/api/v2/search.json?' + urlencode(params)
But, I want to pass something like this:
params = {
'query': 'type:ticket status:solved',
'query': 'tag:__deposits__, # I don't know if this tag should go with ""
'query': created>2022-07-01,
'query': created<2022-09-30,
'query': group:"customer support bla", # This is a main contact type field
'query': group:"customer support blax2", # This is a secondary contact type field
}
Finally I'm not able to make such call and an invalid syntax exception is raised. 
Can anyone of you guide me on how to make such call?
I appreciate your time and thanks in advance!
Note: Yes, I'm able to make successful calls using just this param. My script works well (connection, authentication, and so on) because I copied it from the documentation ;) 
