MigrationStatusResponse Data Type

Response to request to check status of tag type migration

Properties
name data type constraints description
percentComplete number   Returns the completion status for the job that is currently being executed
messages array of Message   Messages contained in the response (which should be shown to the user)
status number required int Returns the status for the job that is currently being executed
responseInfo ResponseInfo  
jobId number required int Returns the jobId for the job which is currently being executed
inBackground boolean required boolean Whether the job was pushed into the background.
latestJob MigrationJobEntry   Returns the lastest job information

Example

{
  "percentComplete" : 12345,
  "messages" : [ { }, { } ],
  "status" : 12345,
  "responseInfo" : {
    "responseCode" : "OK",
    "responseMessage" : "...",
    "property" : "..."
  },
  "jobId" : 12345,
  "inBackground" : true,
  "latestJob" : {
    "handledObjects" : 12345,
    "logName" : "...",
    "jobId" : 12345,
    "status" : 12345,
    "timestamp" : "...",
    "jobType" : 12345
  }
}