HTTP Response Node Page

I have two buttons on a Dashboard, one to select a file and one to upload it. That part works fine, but I would like to find a way to not go to a new page where the the msg payload is displayed (in this case the path and file uploaded and a Success or Fail message) after the POST method. Is there any way to stay on the dashboard and not have to hit the back button to go back to the Dashboard?

I think whatever is receiving your post needs to respond with something like a 304 return code.

Yes -- you just need to return a 204 "No Content" http status code from the http response node at the end of your flow. The browser will interpret this as a good response, without changing the page that is currently shown.

1 Like

Thanks guys! Worked perfectly and easily implemented.