I am trying to move attachments using a webhook from Azure DevOps into Jira. I have my flow setup and am getting the attachment URL from the webhook. I am then using a GET request from DevOps to get the blob key.
The step says it completes successfully in the run console, however, I can see in the response payload a status of "no_file_found" and there is no attachment in Jira.
The filename might be wrong. Try {{{record.filename}}}. This assumes you have a field on your record called filename though. In my case I do. You can also try just hardcoding some file name there to pinpoint other issues.
Also, what does your response mapping look like? Did you map blobKey to blob?
Got it! My lookup step to get the attachment from DevOps was incorrectly set to file encoding of UTF-8. Switched to binary and all is now working. Thanks again!