You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I get zero results when I use the "include" kwarg:
# With side loading
res = zendesk_client.search(query="test", type="ticket", include=["tickets(users)"])
In [3]: res.count
Out[3]: 0
# Without side loading
res = zendesk_client.search(query="test", type="ticket")
In [6]: res.count
Out[6]: 7933
The Search Endpoint does not support side loading although the zendesk api documentation shows that it should. https://developer.zendesk.com/api-reference/ticketing/ticket-management/search/#side-loading
I get zero results when I use the "include" kwarg: