Hey @ALF1, instead of passing the attachment directly, Current (Broken):
IXP Tool Activity Input: DocumentPath (direct file reference) ->Causes ‘key None’ error For fixing, use this method :
Save Attachment to Local Path First Activity: Get Attachment Content Save to: Local temp folder Then pass LOCAL PATH to IXP: IXP Tool Activity Input: Local file path (not cloud reference)
Should work immediately and now Implementation:
1.Add ‘Get Attachment Content’ activity BEFORE IXP tool
2. Save attachment locally:
3. Path: Path.Combine(System.Environment.GetEnvironmentVariable(“TEMP”), ‘attachment.pdf’)
4. Pass this LOCAL path to the IXP tool
5. Clean up the temp file after, and please let me know is it working or not
Thank you for the detailed solution, I really appreciate it. Unfortunately I wasn’t able to test it as the issue resolved itself in the meantime. I also felt it would have added some complexity to my current setup.
I’ll keep it in mind if the problem comes back though!