UDataTable get row under Json

Hello,

I have a function which is being called remotely for Rendering.

One of the parameters, is using a declared Datatable variable, and we are trying to read the Datatable content, via a Json response. (row names)

Using Postman to send the remote property call, it returns the path of the Datatable, but not it’s content, and I’m not aware if this is even possible, to read the UDataTable row names under a Json response.

Currently the function works, but we would like to read the DataTable content, as every level holds different information for the remote render calls, and we need to get this information prior to the call.

The UDataTable is in .csv format, any possible ways of getting the row names?

Thank you.

not familiar with this but if you don’t have the datatable how can you read the rows? maybe you should load it first?

Thank you for the response.

Same as I haven’t used the remote functions ever before, so that’s new.

The DataTable is loaded in the Variable, when remote calling the Actor, it shows the path of it:

Call Body:
JsonBodyProperty

Json Response: (contains only the path)
JsonResponseProperty

The DataTable Content is what we would like to obtain.