MigrationStatusResponse Data Type

Response to request to check status of tag type migration

Properties
name data type description
percentComplete number Returns the completion status for the job that is currently being executed
status number Returns the status for the job that is currently being executed
jobId number Returns the jobId for the job which is currently being executed
latestJob MigrationJobEntry Returns the lastest job information
Properties inherited from GenericResponse
messages array of Message
responseInfo ResponseInfo

Example

{
  "percentComplete" : 12345,
  "status" : 12345,
  "jobId" : 12345,
  "latestJob" : {
    "handledObjects" : 12345,
    "logName" : "...",
    "jobId" : 12345,
    "status" : 12345,
    "timestamp" : "...",
    "jobType" : 12345
  },
  "messages" : [ {
    "fieldName" : "...",
    "message" : "...",
    "type" : "NEUTRAL",
    "timestamp" : 12345,
    "image" : "...",
    "sender" : {
      "id" : 12345,
      "firstName" : "...",
      "lastName" : "...",
      "description" : "...",
      "email" : "...",
      "groups" : [ { }, { } ],
      "login" : "...",
      "password" : "..."
    },
    "id" : 12345
  }, {
    "fieldName" : "...",
    "message" : "...",
    "type" : "WARNING",
    "timestamp" : 12345,
    "image" : "...",
    "sender" : {
      "id" : 12345,
      "firstName" : "...",
      "lastName" : "...",
      "description" : "...",
      "email" : "...",
      "groups" : [ { }, { } ],
      "login" : "...",
      "password" : "..."
    },
    "id" : 12345
  } ],
  "responseInfo" : {
    "responseCode" : "AUTHREQUIRED",
    "responseMessage" : "...",
    "property" : "..."
  }
}