Paperform to pipedrive multiple field flow issue

Hi, i would like to make a flow from a paperform submission to a pipedrive lead.

I have an multiple selection answer, where i have to convert search, replace text convert to a comma separated numbers

the paperform output is:
“63v37”: {
“title”: “Szolgáltatási igény”,
“description”: “”,
“type”: “dropdown”,
“key”: “63v37”,
“custom_key”: null,
“value”: [
“kertépítés”,
“medence építés”,
“kerttervezés”,
“öntözőrendszer telepítése”,
“öntözőrendszer javítás”,
“kertgondozás”
]
},

i need to convert to this:
[
{
“title”: “Szolgáltatási igény”,
“value”: {},
“person_id”: 22,
“organization_id”: 24,
“f6c813cbffcd882dbb07cf78e098f72e96dd1430”: [
28,
29,
30
]
}
]

i have the ids:
|kertépítés|15|
|kerttervezés|16|
|öntözőrendszer telepítése|17|
|kertgondozás|18|
|öntözőrendszer javítás|19|
|medence építés|34|

in zapier, there was a simple tool, formatter, but in make.com, i can’t solve this case.

Thanks for your help!