Transform Json data into camunda forms

I have remote rest service ( which i invoke by http connector) and on each invoke it will give me data like this: [
{
“id”: “1”,
“status”: “good”,
“docType”: “AvtoCard”
},
{
“id”: “2”,
“status”: “good”,
“docType”: “ScoolCard”
}
]
and i want to parse this data and then transform it into camunda forms for this reason i have to use service task+taskscript and by getting repsonse for each element (id,status,doctype) i will have to write output parameters for each one but after thsi step i’ll try to import all these data into form it gives me notification like this open external forms , what should i change to parse and transform json data into camunda tables?
also i want to know how can i extract data from tables and send this response into local folder?

Hi Sally,

sorry for the late response, but I think the main problem here is that your question is a bit unclear.

Maybe you can refine/clarify your question?

As far as I understand you want to request an Endpoint and show the response in a task form, right?
What have you tried so far?

It should be quite simple. You can request you service as you already did and store the response in a process variable.
In your task form you can extract the necessary content and show the needed information.

Hope that helps.

Greets,
Chris