Good evening, I was doing automation for work, and ran into a problem. I want to display information from an http module connected via API to one service. But, I can’t display all the information from data with one button. I read several forums, and in this case they advised different methods, but in all of them you need to manually write out which elements from the collection you want to take. This option does not suit me, because when checking, even through one module, there is a different amount of information, because of this, it is impossible to predict what information to display.
A clear example, the API that I use is checking different information about business partners. For example, I took a module that shows what cars a person has by the passport code. But, here I ran into a problem. As you can see on the screenshot, the information about each car is in a different collection (collection 1, collection 2), I can easily configure it to display it. But what if a person has 10 cars?
I’m looking for a way to simply ALL the information from data - output in plain text.
for simplicity i simplified my scenario by adding only one module in a separate scenario. because my main scenario has more than 260 modules
Below I add all the necessary information.
Thank you in advance, any tips, any solutions will be very useful. Also, I ask you to write the explanation step by step, because I am new to the world of automation. Thank you
[
{
"statusCode": 200,
"headers": [
{
"name": "date",
"value": "Thu, 10 Oct 2024 17:33:08 GMT"
},
{
"name": "content-type",
"value": "application/json; charset=utf-8"
},
{
"name": "transfer-encoding",
"value": "chunked"
},
{
"name": "connection",
"value": "keep-alive"
},
{
"name": "x-ratelimit-keylimit",
"value": "5000"
},
{
"name": "x-ratelimit-keyremaining",
"value": "4601"
},
{
"name": "cf-cache-status",
"value": "DYNAMIC"
},
{
"name": "report-to",
"value": "{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v4?s=8Shr%2B0E%2Bsjan9i%2B2Fys0Wq%2FMEC7li5oc8oXLO3SQd6ZuTwAZ6XErAIJ8njGu77pT4E7K7n11MtVbyPYwXgmpmUg1OeD9TuhaWKpUk06ybgNCsW4pFvPkmo3jhR7yfRUKv9vnLE4%3D\"}],\"group\":\"cf-nel\",\"max_age\":604800}"
},
{
"name": "nel",
"value": "{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}"
},
{
"name": "server",
"value": "cloudflare"
},
{
"name": "cf-ray",
"value": "8d085a908ee9bf52-DUB"
},
{
"name": "content-encoding",
"value": "br"
}
],
"cookieHeaders": [],
"data": {
"totalResults": 2,
"nextPageUrl": null,
"results": [
{
"operationCode": 440,
"operationName": "ПЕРЕРЕЄСТРАЦIЯ ПРИ ВТРАТІ СВIДОЦТВА ПРО РЕЄСТРАЦIЮ",
"registrationDepartmentName": "(8001) ВРЕР-1 УДАІ В М.КИЄВІ",
"type": "ЛЕГКОВИЙ",
"model": "428I",
"brand": "BMW",
"bodyType": "СЕДАН",
"fuelType": "БЕНЗИН",
"color": "КОРИЧНЕВИЙ",
"makeYear": 2014,
"engineCapacity": 1997,
"ownWeight": 1525,
"totalWeight": 1900,
"lastRegistrationDate": "2015-09-29T21:00:00Z",
"purpose": "ЗАГАЛЬНИЙ"
},
{
"operationCode": 440,
"operationName": "ПЕРЕРЕЄСТРАЦIЯ ПРИ ВТРАТІ СВIДОЦТВА ПРО РЕЄСТРАЦIЮ",
"registrationDepartmentName": "(8001) ВРЕР-1 УДАІ В М.КИЄВІ",
"type": "ЛЕГКОВИЙ",
"model": "X5",
"brand": "BMW",
"bodyType": "УНІВЕРСАЛ",
"fuelType": "БЕНЗИН",
"color": "ЧОРНИЙ",
"makeYear": 2012,
"engineCapacity": 2979,
"ownWeight": 2145,
"totalWeight": 2745,
"lastRegistrationDate": "2015-09-29T21:00:00Z",
"purpose": "ЗАГАЛЬНИЙ"
}
]
},
"fileSize": 855
}
]
blueprint (1).json (59.4 KB)