Convert API response JSON to Array to disaply it on table

Hello there!

I am trying to put data from bigquery response API, into a table to create record types. 

So far, I have been able to get the response from bigquery and convert it to appian values, the response looks like this:

This is the response I get from bigquery api

then, I created a rule to narrow down to the values, but as you can see, the column name does not come from the response, so it displays all the values as rows but on the following way :

so as you see, I do not have columns  there , I guess the best way to go on this, will be to get the JSON response converted to an array, and then pass it to a table but not sure if this is possible, any advise?

  Discussion posts and replies are publicly visible

Parents Reply
  • 0
    Certified Lead Developer
    in reply to rodrigoe0001
    What I need is to simply display that response as a table on a site, do I still need to create a db for that?

    That depends mainly on whether you need to store the responses for some time, or whether it will be sufficient to call the API on-demand (and every time the user loads that form).  Assuming you end up with an expression rule that returns a tidy dictionary of data though, you can simply feed that into the data parameter of the Read-Only Grid and use that live, without having to store it or retrieve it from a DB table.

Children