Hey Peeps,
I would be grateful if someone could help me with this.
I have made a custom connector and got a response from it - I managed to store that response in the "Custom_Fields" variable but it stored as a "Untyped Object" - I have tried a few things to get this working but I have come to this error message "The untyped object argument to the "table" function has incorrect type. Expected Table Actual object"
Does anyone know how I can handle this untyped object so I can display the information in a label of some kind?


PowerApp Code:
// Sets the Collection based off the Ticket number given in MT_ValueTXT.Text
Set(LabelTest,{value:Label2.Text});
// Retrieve custom fields using the correct parameter
Set(Custom_Fields,ClickUp.GetAllUser({ticket_number:LabelTest.value}));
ClearCollect(ConnectorData,Table(Custom_Fields));
ClearCollect(Tasklist,ForAll(ConnectorData,{id:Text(ThisRecord.Value.id),score:Value(ThisRecord.Value.score)}));