Response to request to check status of tag type migration
| name | data type | constraints | description |
|---|---|---|---|
| percentComplete | number | Returns the completion status for the job that is currently being executed | |
| status | number | required int | Returns the status for the job that is currently being executed |
| jobId | number | required int | 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 | Messages contained in the response (which should be shown to the user) | |
| responseInfo | ResponseInfo | ||
Example
{
"percentComplete" : 12345,
"status" : 12345,
"jobId" : 12345,
"latestJob" : {
"handledObjects" : 12345,
"logName" : "...",
"jobId" : 12345,
"status" : 12345,
"timestamp" : "...",
"jobType" : 12345
},
"messages" : [ { }, { } ],
"responseInfo" : {
"responseCode" : "OK",
"responseMessage" : "...",
"property" : "..."
}
}