Products is an array.
Try jsonAsObjectoutput.SelectToken("products[0].title").ToString to get the title from first item.
Or you can use Deserialize JSON Array activity to output as JsonArray and loop over all items and get title.

Products is an array.
Try jsonAsObjectoutput.SelectToken("products[0].title").ToString to get the title from first item.
Or you can use Deserialize JSON Array activity to output as JsonArray and loop over all items and get title.
