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 | constraints | description |
|---|---|---|---|
| handledObjects | number | required long | Returns how many objects have been handled by the migration job |
| logName | string | Returns the log filename for the migration job | |
| jobId | number | required int | |
| status | number | required int | Returns the status of the executed migration job |
| timestamp | string | Returns the timestamp for this job entry | |
| jobType | number | required int | 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
}