How to convert Json to data table

Hi all

I have already Deserialize the json (json_obj_Output.SelectToken(“AddIN”)).
“AddIN”: [
{
“invoiceNumber”: “In1”
},
{
“invoiceNumber”: “In2”
},
{
“invoiceNumber”: “In3”
},
{
“invoiceNumber”: “In4”
},
{
“invoiceNumber”: “In5”
}
]
Output is:
[{“invoiceNumber”: “In1”},{“invoiceNumber”: “In2”},{“invoiceNumber”: “In3”}]
How can I convert this to a data table?

Thank you

Hi @red_yan

Welcome to community

Look into the documentation

Regards
Gokul

2 Likes

This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.