🗓️Tabular Responses
Some endpoints return data in tabular format for easy template rendering.
Certain API endpoints might return you data in a tabular format, thus making it easier for you to render them in your template files.
You can get the table
object from response object using data.table
.
A typical table
object response will include a header
and rows
. The header
contains the column names, while the rows
contain the row data.
Each row object consists of a cells
array and an entry
object. The entry
is the label for the current row. While cells are the values for the corresponding columns of the row.
For more information on how to render this type of data refer to the samples repository
Last updated