Hello Alteryx community,
I am currently in the process of passing a call to an API. Some of the data for this call is present in a column in Alteryx which would be a set of numbers in rows within a Part Number column whose datatype is a "V_String". Please find the example table and API call below.
Sample Table
| Part Number | Part Name | Part Available |
| 12345678A | NUT | Y |
| 14567890A | BOLT | N |
| 98765432A | ENGINE | N |
| 32109876A | CHASSIS | Y |
Sample API Call/Request
{
"companyCode": "TST01",
"partNumbers": [
{
partNumber": "12345678A"
},
{
"partNumber": "14567890A"
},
{
"partNumber": "98765432A"
},
{
"partNumber": "32109876A"
}
]
}
Can anyone please help me on how to achieve this? I tried to use "Report Text" feature in documentation, but that seems to be somewhat rather an hassle and I wasn't able to achieve it. If possible, is there a way where we could run a Multi-Row formula and generate the API request and create a new Column with the complete request in one single row or whatever the best possible way to solve this scenario.
Thank you,
Sachit