Process Variables with JSON Post request

Hello,
I am trying to implement a process that is using the community feature of the REST API in Camunda 8. However, I have a doubt in accessing the variables from the request inside the start process instance.
I have the following JSON:
image
And I wanted to know if I can use those variables immediately in the process and if so in what way.

I have solved it, instead of trying to create a script task and process the variables and use a map to define them as I was expecting, I simply had to access them with dot language. Example, to use “product” I used OpportunityBO.ContractBO.product

2 Likes