2022.1

Table Of Contents
A single record with a detail table
{
"name":"Peter Parker",
"email":"parkerp@localhostcom",
"detail": [{"id":"inv123","ExtraData":"hello"},
{"id":"456","ExtraData":"world"}]
}
A JSON Record Data List
A JSON Record Data List describes a list of data fields (as name/value pairs), a data table
schema and nested data records (if any) for one or more data records. This example holds a
single, simple record, and two runtime parameters.
{
"parameters": {
"campaign":"Campaign Name",
"folder":"myFolder"
},
"data": {
"schema": {
"columns": {
"ID": "STRING",
"Gender": "STRING",
"FirstName": "STRING",
"LastName": "STRING"
}
},
"fields": {
"ID": "CU00048376",
"Gender": "M.",
"FirstName": "Benjamin",
"LastName": "Verret"
}
}
}
Note that the "parameters" key can be left out if there are no runtime parameters.
For more examples see the REST API Cookbook, and Working with JSON data in the
Workflow Online Help.
Page 1034