JSON Identifier (with Runtime Parameters)

Describes a list of identifiers for multiple content set entities, along with additional runtime parameters used specifically in a job creation operation.

Structure

The structure consists of an object with the following name/value pairs:

  • identifier – an array) of content set entity identifiers.
    (type of number)

  • parameters – a set of the runtime parameter names and their corresponding values, consisting of an object with one or more name/value pairs:

    • <name> – the name (name) and the value of the runtime parameter
      (type of either string, number, or boolean)

Example

The following is an example of this structure:

{
    "identifiers": [ 12345, 23456, 34567 ],
    "parameters": {
	    "FirstName": "Benjamin",
	    "InvoiceDueAmount": 123.45,
	    "InvoiceDueDate": "2020-03-10",
	    "InvoiceOverdue": true
    }
}