Skip to content

Commit

Permalink
Fixing issue with SearchUserOptions. The field name must be "external…
Browse files Browse the repository at this point in the history
…_id" not "external_ids"
  • Loading branch information
luiscastanedalopez authored Aug 9, 2023
1 parent b77fe2b commit ab5b016
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 ab5b016

Please sign in to comment.