Skip to content

Commit

Permalink
Merge pull request #279 from luiscastanedalopez/patch-to-fix-search-u…
Browse files Browse the repository at this point in the history
…ser-options

Fixing issue with SearchUserOptions. The field name must be "external…
  • Loading branch information
nukosuke committed Aug 14, 2023
2 parents b77fe2b + ab5b016 commit 2553cd8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion zendesk/user.go
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ type UserRelated struct {
// ref: https://developer.zendesk.com/api-reference/ticketing/users/users/#search-users
type SearchUsersOptions struct {
PageOptions
ExternalIDs string `json:"external_ids,omitempty" url:"external_ids,omitempty"`
ExternalIDs string `json:"external_id,omitempty" url:"external_id,omitempty"`
Query string `json:"query,omitempty" url:"query,omitempty"`
}

Expand Down

0 comments on commit 2553cd8

Please sign in to comment.