How do I post input parameters to a service task url

Hi ,

I have created a BPMN file using only service tasks and each of those service task is a microservice(REST end point).
But am unable to hit the microservice once I trigger the start process from tasklist.Please help
loan-approval.bpmn (7.2 KB)

Attaching a bpmn file I deployed.
The microservice controller method :-

@RequestMapping(value = “/equipmentBoard”, method = RequestMethod.GET)
public @ResponseBody String EquipmentBoardResponse(@RequestBody DelegateExecution execution) throws Exception {
System.out.println(“Inside Request Body”);
System.out.println(“Delegation Request is===>” + execution.toString());

	String response = "cardStatusResult";

	return response;
} 

Error: Request method ‘POST’ not supported

Try changing to
method = RequestMethod.POST

@andyp ,
I did try that initially …sorry the pasted code should have had method = RequestMethod.POST.
But it doesnt work :worried: