Skip to content

Commit

Permalink
Fix endpoint (#227)
Browse files Browse the repository at this point in the history
  • Loading branch information
nukosuke authored Apr 21, 2022
1 parent 400e5d6 commit b64dba3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion zendesk/dynamic_content.go
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ func (z *Client) CreateDynamicContentItem(ctx context.Context, item DynamicConte
}
data.Item = item

body, err := z.post(ctx, "/groups.json", data)
body, err := z.post(ctx, "/dynamic_content/items.json", data)
if err != nil {
return DynamicContentItem{}, err
}
Expand Down

0 comments on commit b64dba3

Please sign in to comment.