1.2k questions

1.4k answers

361 comments

339 users

Categories

Sidebar
0 votes
1.4K views
by brandon-w-8204 (34.1k points)
I have a destination that is returning an ack message that I need to send back to the system that called my source node. How can I get that ack i get from my destination back to the calling system.

1 Answer

+1 vote

There is 2 things you have to do to send this back.

1. Setup the source to be from Mapping or Destination node

2. Setup the ack script on the Destination to go to post the response: Here is a sample script. The line that returns the ack is "qie.postMessageResponse(response);"

if (response === null || response.length === 0) {

by brandon-w-8204 (34.1k points)
edited by brandon-w-8204
...