2019.1

Table Of Contents
JSON Operations List
Describes a list of workflow operations (specifically asynchronous workflow operations)
actively running on the server, each containing various properties including the type of
workflow operation, it's starting time and it's current progress value.
This structure is used specifically with workflow based services including the Data Mapping,
Content Creation, Content Creation (Email), Job Creation, Output Creation and All-In-One
services.
Note
See the Workflow Operations page of the Technical Overview section for further detail on
workflow operations.
Structure
The structure consists of an array of objects each with the following name/value pairs:
l id the workflow operation identifier (type of string)
l type the workflow operation type (value of either DataMiningRestService,
ContentCreationRestService, EmailExportRestService, JobCreationRestService,
OutputCreationRestService or PrintRestService) (type of string)
l subTask the workflow operation sub-task name (type of string)
l startTime the workflow operation starting time stamp (value of milliseconds since
midnight of January 1, 1970 UTC) (type of number)
l progress the workflow operation progress percentage (value in range of 0 to 100) (type
of number)
Workflow operation objects with a type value of either ContentCreationRestService or
PrintRestService (usually with a subTask value of Content Creation) can also contain the
following name/value pair:
l template the name of the design template being used for content creation (type of
string)
Example
The following is an example of this structure:
Page 99