We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I got an error message when I send a request to /macros.json . I did the investigation, this error happened when the API responded like the below.
/macros.json
"actions": [ { "field": "side_conversation_ticket", "value": [ "こんにちは", "<p>■テストです。</p>", "SupportAssignable:support_assignable/group/5291292944015", "text/html" ] } ]
The text was updated successfully, but these errors were encountered:
@Code-Hex
Thank you for your report.
The reason is that the Value field of MacroAction struct is fixed to string type.
Value
MacroAction
string
go-zendesk/zendesk/macro.go
Lines 27 to 30 in 790f26d
We should make it interface{} to handle []string.
interface{}
[]string
Sorry, something went wrong.
No branches or pull requests
I got an error message when I send a request to
/macros.json
.I did the investigation, this error happened when the API responded like the below.
The text was updated successfully, but these errors were encountered: