Hello everyone,
I’m trying to create a Spring Boot application in which I want to be able to assign users to certain tasks. Does anyone know how to do that ?
Thank you so much.
Hello everyone,
I’m trying to create a Spring Boot application in which I want to be able to assign users to certain tasks. Does anyone know how to do that ?
Thank you so much.
Hi Touna,
You can add, get, delete, etc candidate users and groups using the identity links REST API:
https://docs.camunda.org/manual/latest/reference/rest/task/identity-links/
You can change or assign tasks to specifics users using the task assignee REST API:
https://docs.camunda.org/manual/latest/reference/rest/task/post-assignee/
Joe
Thank you @Beagler ^^