Response to requests for fetching jobitems. A MigrationJobItemsResponse object contains a list of objects that have been handled by the migration job.
name | data type | description |
---|---|---|
jobId | number | |
jobItems | array of MigrationJobLogEntryItem | Returns the list of MigrationJobLogEntryItem |
Properties inherited from GenericResponse |
||
messages | array of Message | |
responseInfo | ResponseInfo |
Example
{ "jobId" : 12345, "jobItems" : [ { "jobId" : 12345, "objectId" : 12345, "objectType" : 12345, "status" : 12345 }, { "jobId" : 12345, "objectId" : 12345, "objectType" : 12345, "status" : 12345 } ], "messages" : [ { "fieldName" : "...", "message" : "...", "type" : "WARNING", "timestamp" : 12345, "image" : "...", "sender" : { "id" : 12345, "firstName" : "...", "lastName" : "...", "description" : "...", "email" : "...", "groups" : [ { }, { } ], "login" : "...", "password" : "..." }, "id" : 12345 }, { "fieldName" : "...", "message" : "...", "type" : "CRITICAL", "timestamp" : 12345, "image" : "...", "sender" : { "id" : 12345, "firstName" : "...", "lastName" : "...", "description" : "...", "email" : "...", "groups" : [ { }, { } ], "login" : "...", "password" : "..." }, "id" : 12345 } ], "responseInfo" : { "responseCode" : "MAINTENANCEMODE", "responseMessage" : "...", "property" : "..." } }