i am sing angular js for front end and spring boot for back end I have a form filled by the user asking for credit that must be validated by the bank . How can i process to do that with Camunda ?
You can send it from the Angular js front end to the Camundas REST api as a JSON object. Then you could use Spin to access variables or you can Serialize the JSON.
Can you explain more please ? or if you have an example i can follow .
Thnaks for your answer .
The REST API is well documented. I assume that probably you want to send a message from the Angular App towards the engine. So you could use the following the REST call: https://docs.camunda.org/manual/latest/reference/rest/message/post-message/
Here you find information how to deal with JSON objects inside the Camunda engine: https://docs.camunda.org/manual/latest/user-guide/data-formats/json/
1 Like
Nice, this is what I was looking for.