2019.2

Table Of Contents
JSON Record Content List (Fields Only)
Describes a list of data field values (as name/value pairs) for a data record, used to update an
existing data record entity of a specific ID.
Structure
The structure consists of an object with the following name/value pairs:
l id the data record entity identifier (type of number)
l fields a list of data fields in the data record entity, consisting of an array of objects
each with the following name/value pairs:
l name the name of the data field (type of string)
l value the value of the data field (type of string)
Example
The following is an example of this structure:
{
"id": 12345,
"fields": [
{
"name": "FirstName",
"value": "Benjamin"
},
{
"name": "LastName",
"value": "Verret"
}
]
}
Page 56