Add an attachment to a case using File Picker node in the VA
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎08-02-2023 07:03 AM
I have a topic built in the the HR Virtual agent. I'm at the point in the flow where I'm creating an HR ticket. As part of creating the ticket, I'm trying to use the File Picker node to allow the colleague using the VA, to upload an attachment that will attach said file to the ticket that's generated.
In the Virtual Agent Designer I'm testing the flow and I can create the HR ticket. When I go to the portal or to view all HR cases in UI16 or Next Experience, the file I attached to the VA conversation is not brought through tot the case.
Has anyone else experienced this?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎09-18-2023 02:28 AM
I'm stuck in the same place to be honsest, but this may help you...
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎04-27-2025 05:36 PM
Hi @Matt Lodge, I just did this in my pdi, after my topic block "Create HR Case" i have a script action with the code below
(function execute() { vaSystem.attachToRecord( vaInputs.attachment_file, vaVars.caseTable, vaInputs.case_id ); })()
Hope this helps