A migration job entry contains information about an executed migration job. Infomation like the job status and the count of objects that have been handled are stored in MigrationJobEntry objects.
| name | data type | description |
|---|---|---|
| handledObjects | number | Returns how many objects have been handled by the migration job |
| logName | string | Returns the log filename for the migration job |
| jobId | number | |
| status | number | Returns the status of the executed migration job |
| timestamp | string | Returns the timestamp for this job entry |
| jobType | number | Returns the job type. The job type is used to distinguished between a tag type migration and a template type migration |
Example
{
"handledObjects" : 12345,
"logName" : "...",
"jobId" : 12345,
"status" : 12345,
"timestamp" : "...",
"jobType" : 12345
}