As Title, I can't find how to get a component object in richtext without using a strong type.
DeliveryItemListingResponse listingResponse = await kentontClient.GetItemsAsync(
new InFilter("system.type", "property")
);
foreach(var item in listingResponse.Items)
{
var spec = item.GetLinkedItems("d3cb9f23_7684_0174_0b8d_6320bb61cc62");
}
It throws an exception. The component d3cb9f23_7684_0174_0b8d_6320bb61cc62
object exists in a private member _linkedItemsSource
.
I'm guessing that GetLinkedItems
searches just under its elements only.
Are there any way we can get it?