1.Create the JSON Structure
2.Create Import Mapping with the JSON structure created already
3.Call the rest service in the microflow
In this activity you can pass the parameter to the URL
4.Apply import mapping in the call rest service activity
Use the below link to completly know about the consume the REST
https://docs.mendix.com/howto/integration/consume-a-rest-service
Before your ‘Call REST Action’ create a variable String ‘$varLocation”. Build your varLocation string based on the baseURL of the endpoint and add your queryParameters as needed. Then use your $varLocation in the Call Rest action.
Something like so:
$baseURL + ‘?status=’ + $task/status + ‘&casemanager=’ + $employee/name
Your Task and Employee should be available in this microflow as parameters.