-
-
Notifications
You must be signed in to change notification settings - Fork 164
Open
Description
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:
# 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
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
No labels