One of the ways of doing this by using SelectToken from the Json response, another way is by using Regex expressions.
Solution by using SelectToken is below, See output panel
For each of the response Json, we would need to use below 3 sequences
Extracting your json response as below, which contained the parameters you mentioned
{
“DynamicProperties”:{
“Invoice_Date”:“05/07/2019 09:11:00”,
“Seller_ID”:“4916882”,
“Seller_Name”:“DT INVENTORY”,
“PO_Number”:“PXAA”,
“Aucton_Location”:“Tolleson, AZ”,
“VIN_Number”:“KMHTC6AD9HU309121”,
“Year”:“2017”,
“Make”:“Hyundai”,
“Model”:“Veloster”,
“Price”:“80”
}
}
You can use assign activity and store formattedJson.SelectToken(“DynamicProperties.Seller_ID”).ToString into a variable
Similarly for formattedJson.SelectToken(“DynamicProperties.Invoice_Date”).ToString
and formattedJson.SelectToken(“DynamicProperties.VIN_Number”).ToString for each of the parameters mentioned