Skip to content

Commit

Permalink
Fix function params
Browse files Browse the repository at this point in the history
  • Loading branch information
Luiza Coman committed Nov 7, 2023
1 parent e3f9b50 commit 333b5a8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion zdesk/zdesk_api.py
Original file line number Diff line number Diff line change
Expand Up @@ -5162,7 +5162,7 @@ def users_request_create(self, data, **kwargs):
api_path = "/api/v2/users/request_create"
return self.call(api_path, method="POST", data=data, **kwargs)

def users_search(self, **kwargs):
def users_search(self, external_id=None, query=None, **kwargs):
"https://developer.zendesk.com/rest_api/docs/core/users#search-users"
api_path = "/api/v2/users/search.json"
api_query = {}
Expand Down

0 comments on commit 333b5a8

Please sign in to comment.