I have a requirement like this, where I need to submit the same form data to third party system. I have tried to call send in save action as below.
then send(
uri = "http://localhost:8080/restcall/form",
replace = "none",
method = "post",
content = "xml",
annotate = "id"
)
But the problem here is that the data format should be form parameter(Normal form submission). But using send
I think that data will go in xml format.
- Please let me know how to submit data in form parameter
- How to submit specific hidden field(not all hidden field) to third party system using send