nukosuke
nukosuke
@Code-Hex Thank you for your report. The reason is that the `Value` field of `MacroAction` struct is fixed to `string` type. https://github.com/nukosuke/go-zendesk/blob/790f26d3638907a7e699a5f02757a190c9c48903/zendesk/macro.go#L27-L30 We should make it `interface{}` to handle `[]string`.
I have same problem. Maybe, warning 1 is caused by this line. - https://github.com/lynndylanhurley/redux-auth/blob/master/src/views/default/Input.js#L51 `{…this.props}` extracts all of `AuthInput` props here, but `` element has no `errors` prop. @tizub Probably,...
## Manual test for create ### dynamic_content_items.tf ```hcl resource "zendesk_dynamic_content_item" "loc-lang" { name = "language" default_locale = "en-US" variant { locale = "en-US" content = "English (US)" } variant {...
What endpoint are you using? I guess that response of Ticket API doesn't have audit info. You could use Ticket Audit API instead. https://pkg.go.dev/github.com/nukosuke/go-zendesk/zendesk#Client.GetTicketAudits
audits can be retrieved only from dedicated endpoint, maybe. https://developer.zendesk.com/api-reference/ticketing/tickets/ticket_audits/#list-audits-for-a-ticket So, you should send another `GET` request to `/api/v2/tickets/{ticket_id}/audits` after updating the ticket.
oh, I didn't know. Thank you for the information. Then, this method seems discard `"audit"` payload as you said. https://github.com/nukosuke/go-zendesk/blob/e68b5451c9ee694bef450ddd617013d142836985/zendesk/ticket.go#L262-L265 > I am thinking of a case where you want...
Sorry for the late reply 🙇♂️ Unfortunately, I don't have enough time to tackle this issue now. @gkatechis, @cryptomail > We will be embarking on adding CBP soon and contributing...
#170 has `email_target` and `http_target`. we should do refactoring https://gitter.im/terraform-provider-zendesk/Lobby?at=5dd851d24517d002b2d5b0f9 and, here is missing target list. - basecamp_target - campfire_target - clickatell_target - flowdock_target - get_satisfaction_target - jira_target - pivotal_target...