HTTP Endpoint parameters and query #1474
-
hi, How can I pass a parameter or a query string to a HTTP Endpoint workflow? Lets assume that, I will create parent/child workflows. thanks in advance, |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
hi, I've found a solution for this. I've created a workflow. First activity is a HTTP Request and second activity is a HTTP response. var adi = queryString("personname"); and then I've published this workflow. For run, I've used http://localhost:5000/show?personname=John. That's it. Thanks, |
Beta Was this translation helpful? Give feedback.
hi,
I've found a solution for this. I've created a workflow. First activity is a HTTP Request and second activity is a HTTP response.
I've written this code snippet as JavaScript in the Content area:
var adi = queryString("personname");
Hello ${adi}
and then I've published this workflow. For run, I've used http://localhost:5000/show?personname=John. That's it.
Thanks,
umit.