Hi all!
I have a popup screen for JSM agents where I need the agent to add testing doc for the approver to see. The approver is NOT an agent, just an end user/customer.
I added the attachment field, thanks to this post; but I can't seem to make the attachment appear to the customer (approver) on the portal. What am I missing??
I want to add alternative variant, to those, that offered @Jehan Bhathena
As a workaround, you can use automation rule, which will add comments with list of attachments. This comments must be made visible for customers.
In comment must be text like:
Here is the list of attachments in {{triggerIssue.key}}
{{#triggerIssue.attachment}}
* {{filename}}: {{content}}
{{/}}
Hello @zendeskbyheather ,
Currently the attachments cannot be shown to the customers directly, they need to be made visible via the "Reply to Customer" comment. I tried it at my end as well and had to embed the Attachment reference into my comment after uploading the attachment to make it visible.
Screen configuration at my end:
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
In the transition you can use the following code to access the changelog and show only the attachments that you added in that process
{{#changelog.Attachment}}
[^{{toString}}]
{{/}}
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.