and I am trying to make an external call to my API which is an azure functions and the response of the API looks like
[
{
"customerTaxCountryCode": "CODE1",
"customerTaxLocalName": "TAXLOCAL1",
"customerTaxNumber": "TAX00023",
"customerTaxCountry": "USA",
"customerTaxTypeCode": "TAXNO1"
},
{
"customerTaxCountryCode": "CODE2",
"customerTaxLocalName": "TAXLOCAL2",
"customerTaxNumber": "TAX9544",
"customerTaxCountry": "USA",
"customerTaxTypeCode": "TAXNO2"
}
]
I tried importing the schema by clicking Import Projection, but it is giving the irrelevant response
I tried writing the complex structure as ,
(customerTaxTypeCode as string, customerTaxCountryCode as string, customerTaxLocalName as string, customerTaxNumber as string, customerTaxCountry as string )[]
still, the data is not getting mapped.
