Skip to content

Commit

Permalink
feat: add the ids filter option for the list custom object records api
Browse files Browse the repository at this point in the history
Signed-off-by: Caterina Magini <caterina.magini@enterprisedb.com>
  • Loading branch information
CaterinaMag committed Oct 9, 2023
1 parent 762f6d1 commit 1cd089b
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion zendesk/custom_object.go
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,8 @@ func (z *Client) CreateCustomObjectRecord(
// CustomObjectListOptions custom object list options
type CustomObjectListOptions struct {
PageOptions
ExternalIds []string `url:"external_ids"`
Ids []string `url:"filter[ids]"`
ExternalIds []string `url:"filter[external_ids]"`
}

// ListCustomObjectRecords list objects
Expand Down

0 comments on commit 1cd089b

Please sign in to comment.