External Actions Demo Server

Received data

{}

Closing the modal

If this page is displayed in a modal window, it can be closed by posting a message to itsparent window. The message you post will depend on whether you want Signals Notebook to continue or abort the current workflow.

Close and continue

To continue the workflow, post the “closeAndContinue” message. Enter your Signals Notebook host in the box below (including the “http://” and port number, if needed), and then click the button above to try it.

window.parent.postMessage(
['closeAndContinue', []],

// your Signals Notebook host
''
);

Close and abort

To abort the workflow, post the “closeAndAbort” message. Enter your Signals Notebook host in the box below (including the “http://” and port number, if needed), and then click the button above to try it.

window.parent.postMessage(
['closeAndAbort', []]

// your Signals Notebook host
''
);