External Task Input parameters

How do I fetch the input parameters for an external service task?

For User task I use
task/"+ taskID + "/form-variables

This does not work for external tasks.

What is the API I need to call for fetching the input parameters for an “external service” task.

In the attached process definition I want to get the input parameters for the service task “Send Notification”

This is my process definition.TafeWF.bpmn (76.7 KB)

Hi @deepti,

You can request the variables you expect in your external implementation with the fetch-and-lock call: https://docs.camunda.org/manual/7.7/reference/rest/external-task/fetch/.

Then you will get the values with the repsonse.

Hope this helps, Ingo

Got it Thanks Ingo !!!