How to create a User task and submit input and output variables without any form and job worker.. i just want to use input and output variables

How to create a User task without form or job worker…i just want to fetch input and completed the task by sending output variables? any easier way?

I can’t understand what you’re trying to ask.

Do you mean that you want to have an external system connect to Camunda, claim a user task based on where the token is in a process, collect the variables for that task, and when the external system says that it’s done complete the task?

That’s the definition of a Job Worker, but if you want to avoid that terminology, you could use the API. Assuming that you are using a new-ish install of Camunda 8, use the v2 API endpoint

@Aparnaiaai While modeling the user task, you need to set task type as “Zeebe User Task” or “Camunda User Task”.

Then you can use the tasklist v2 api to fetch and complete the task.

POST: Complete user task

http://localhost:8080/v2/user-tasks/:userTaskKey/completion

Note: “Job Worker Task” types are deprecated, So I recommend to use “Zeebe User Task” type