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:

  • id – the data record entity identifier (type of number)

  • fields – a list of data fields in the data record entity, consisting of an array of objects each with the following name/value pairs:

    • name – the name of the data field (type of string)

    • 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"
        }
    ]
}