MigrationJobItemsResponse Data Type

Response to requests for fetching jobitems. A MigrationJobItemsResponse object contains a list of objects that have been handled by the migration job.

Properties
name data type constraints description
jobId number required int
jobItems array of MigrationJobLogEntryItem   Returns the list of MigrationJobLogEntryItem
Properties inherited from GenericResponse
messages array of Message   Messages contained in the response (which should be shown to the user)
responseInfo ResponseInfo  

Example

{
  "jobId" : 12345,
  "jobItems" : [ {
    "jobId" : 12345,
    "objectId" : 12345,
    "objectType" : 12345,
    "status" : 12345
  }, {
    "jobId" : 12345,
    "objectId" : 12345,
    "objectType" : 12345,
    "status" : 12345
  } ],
  "messages" : [ { }, { } ],
  "responseInfo" : {
    "responseCode" : "OK",
    "responseMessage" : "...",
    "property" : "..."
  }
}