List to HTML Table
1 min
Converts a list of values to an html table
API Definition
List to HTML API
Call the following API:
POST
https://orca.pathfix.com/functions/list/tohtmltable
{
"input": [{
"name": "Ron",
"email": "[email protected]",
"title": "Mr.",
"company": "Pathfix Inc."
},
{
"name": "Sophie",
"email": "[email protected]",
"title": "Ms.",
"company": "Pathfix Inc."
}
],
"style": {
"table": "style='border: 1px solid black;border-collapse: collapse;'",
"tableHeaders": "style='border: 1px solid black;border-collapse: collapse;'",
"tableData": "style='border: 1px solid black;border-collapse: collapse;'"
}
}Output produced in above example

html output