I have seen a lot of similar topics but none worked for me, with i receive the http response always start with @ sign,
I try to deserialize it i always get error on line 1
response as below
@"{
""C_ID"": ""xxx-12312-xx"",
""CustomerName"": ""Test"",
""CustomerType"": ""Corporate"",
""RiskLevel"": ""Low"",
""BranchCode"": ""010"",
""CountryOfIncorporation"": ""HK"",
""IncomingTerritories"": [
{
""CountryCode"": ""AQ""
},
{
""CountryCode"": ""BF""
},
{
""CountryCode"": ""CK""
},
{
""CountryCode"": ""DK""
},
{
""CountryCode"": ""FM""
},
{
""CountryCode"": ""FO""
},
{
""CountryCode"": ""GP""
},
{
""CountryCode"": ""MX""
},
{
""CountryCode"": ""NG""
},
{
""CountryCode"": ""PN""
},
{
""CountryCode"": ""SK""
},
{
""CountryCode"": ""SZ""
},
{
""CountryCode"": ""TG""
},
{
""CountryCode"": ""WS""
}
],
""OutgoingTerritories"": [
{
""CountryCode"": ""DM""
},
{
""CountryCode"": ""GQ""
},
{
""CountryCode"": ""HT""
},
{
""CountryCode"": ""SN""
},
{
""CountryCode"": ""YT""
}
],
""PaymentForecast"": {
""MaxMonthlyPayments"": 0,
""MaxSinglePayment"": 0,
""VolumePerMonth"": 0
}
}"
any idea how can i convert this for table that i can use in the flow !
if use desterilize to Json object
JObject(9) { JProperty(1) { [SOL-12312-BC] }, JProperty(1) { [Test] }, JProperty(1) { [Corporate] }, JProperty(1) { [Low] }, JProperty(1) { [010] }, JProperty(1) { [HK] }, JProperty(1) { JArray(14) { JObject(1) { JProperty(1) { [AQ] } }, JObject(1) { JProperty(1) { [BF] } }, JObject(1) { JProperty(1) { [CK] } }, JObject(1) { JProperty(1) { [DK] } }, JObject(1) { JProperty(1) { [FM] } }, JObject(1) { JProperty(1) { [FO] } }, JObject(1) { JProperty(1) { [GP] } }, JObject(1) { JProperty(1) { [MX] } }, JObject(1) { JProperty(1) { [NG] } }, JObject(1) { JProperty(1) { [PN] } }, JObject(1) { JProperty(1) { [SK] } }, JObject(1) { JProperty(1) { [SZ] } }, JObject(1) { JProperty(1) { [TG] } }, JObject(1) { JProperty(1) { [WS] } } } }, JProperty(1) { JArray(5) { JObject(1) { JProperty(1) { [DM] } }, JObject(1) { JProperty(1) { [GQ] } }, JObject(1) { JProperty(1) { [HT] } }, JObject(1) { JProperty(1) { [SN] } }, JObject(1) { JProperty(1) { [YT] } } } }, JProperty(1) { JObject(3) { JProperty(1) { [0] }, JProperty(1) { [0] }, JProperty(1) { [0] } } } }
how i can read this !
Thanks in advance.