Hello Team,
i am new for Camunda 8
i want to call operate as well as tasklist (all the user task) via REST APi from start to end task ? how i will call ?
Hello @Supriya,
You can use the Tasklist API to retrieve and complete user tasks:
- Search for the available tasks:
Task API | Camunda 8 Docs - (Optional) Assign a task to a user:
Task API | Camunda 8 Docs - Complete the task:
Task API | Camunda 8 Docs
Upon task completion, the process will be advanced to the next element. You can repeat the steps above to get a up-to date list of tasks.
yes got it thank you
/v1/tasks/{taskId}/complete while using this endpoingt i n the body i am using {
“variables”: [
{
“name”: “Level1”,
“value”: “Approved”
}
]
} but facing 500 error also i put in INPUT tab in the modeler
- only empty json i use then it is working for complete task
any specific reason
Can you try it with
{
"variables": [
{
"name": "Level1",
"value": "\"Approved\""
}
]
}
@GotnOGuts Thank you it is working now
This topic was automatically closed 7 days after the last reply. New replies are no longer allowed.