Hello,
How to get information from one specific body line to a given field on the form?
I tried this way but it doesn't work, for example I want to download information only from decisions -> type -> and code content
Part code of body :
"decisions": [
{
"id": 111111,
"type": {
"id": 0001,
"code": "APPROVAL" <------- this part i would like to get in specifit field
},
FULL Code body :
{
"id": 1111,
"status": {
"id": 42000002,
"code": "DONE"
},
"versionNumber": 1,
"limitNumber": "0001/2025",
"limitId": 4545,
"data": {
"limitListId": 4545,
"policyNumber": "56565",
"amount": 1000,
"currency": {
"id": 40000,
"code": "PLN"
},
"paymentDays": 20,
"type": {
"id": 1111212121,
"code": "STANDARD"
},
"validFrom": "2025-07-03",
"overridePendingRequest": false
},
"decisions": [
{
"id": 111111,
"type": {
"id": 0001,
"code": "APPROVAL"
},
"status": {
"id": 00002,
"code": "ACTIVE"
},
"versionNumber": 1,
"validFrom": "2025-07-03",
"amount": 1000,
"currency": {
"id": 4000130,
"code": "PLN"
},
"paymentDays": 20,
"conditions": [],
"codes": []
}
]
}