Activiti With Rest
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-10-2016 09:01 AM
Hi,
Can any one please provide me simple example on activiti with rest api… I am very new in activiti. I searched on net but I could not able to find simple example… please help me
Thank You
Can any one please provide me simple example on activiti with rest api… I am very new in activiti. I searched on net but I could not able to find simple example… please help me
Thank You
Labels:
- Labels:
-
Archive
3 REPLIES 3

Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-11-2016 03:29 AM
Hi,
I'm not sure what kind of example you are looking for. The Activiti user guide is probably the best starting point.
Best regards,
I'm not sure what kind of example you are looking for. The Activiti user guide is probably the best starting point.
Best regards,
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-11-2016 06:27 AM
Hi,
I just want to deploy process and call task from rest. I go through activiti user guide but not able to understood. If u have any example or link please provide me
Thank You
I just want to deploy process and call task from rest. I go through activiti user guide but not able to understood. If u have any example or link please provide me
Thank You
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-12-2016 11:57 AM
hi krishan.deo
you can check Activiti user guide chapter 15 here give the all rest api .
if you want start a process then..
curl -u userid:userpassword -H "Content-Type: application/json" -d '{"processDefinitionKey":"key of your bpmn process", "variables":[ {"name":"id of your varialable in yor form", "value":"value of given variable"} ]}' http://localhost:8080/activiti-rest/service/runtime/process-instances
you can check Activiti user guide chapter 15 here give the all rest api .
if you want start a process then..
curl -u userid:userpassword -H "Content-Type: application/json" -d '{"processDefinitionKey":"key of your bpmn process", "variables":[ {"name":"id of your varialable in yor form", "value":"value of given variable"} ]}' http://localhost:8080/activiti-rest/service/runtime/process-instances
