Signal From Another Application #1201
Unanswered
CansuGoren
asked this question in
Q&A
Replies: 1 comment 5 replies
-
Certainly. There are 2 API endpoints you can invoke to send a signal from your front-end app:
The difference between execute and dispatch is that the former will execute the workflow before returning an HTTP response, while the latter will schedule the workflow for execution on a background queue and return an HTTP response immediately. To send additional workflow input, workflow instance ID and/or correlation ID, take a look at the source code to see what JSON model to post with: https://github.com/elsa-workflows/elsa-core/tree/master/src/server/Elsa.Server.Api/Endpoints/Signals |
Beta Was this translation helpful? Give feedback.
5 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
After register documents and information control, If everything is ok, I want to resume my workflow and I thought that I could do that using send signal.
How can I send a signal from another application( like running with angular js frontend), is it possible?
Thank you in advance.
Beta Was this translation helpful? Give feedback.
All reactions