Skip to main content

How can I send data via API to fill an itable field?

Comments

1 comment

  • Official comment
    Antonio Diaz

    Hello,

    An itable field stores its information in JSON format.

    An example to create or update an itable metadata is:

     

    {
    "properties": {
    "metadata.my_table" : "[{'DT_RowId': 1, 'Column1': 'Value_1_1', 'Column2': 'Value_1_2'}, {'DT_RowId': 2, 'Column1': 'value_2_1, 'Column2': 'value_2_2'}]",
    }
    }

    Note that 'Column1'  and 'Column2' are the names of the columns in the table. DT_RowId is an index that represents the order of each row.

     

Please sign in to leave a comment.