Get the status of a migration background job.
Parameters
Output
application/jsonerror
string
Optional
No description available.
jobId
string
Required
No description available.
progress
ref#progressView
Optional
No description available.
results
array
Optional
No description available.
status
string
Required
No description available.
pending, running, completed, failed, paused, cancelledTry It
Requests are sent directly from your browser. Some servers may block requests due to CORS.
View raw schema
{
"type": "query",
"output": {
"schema": {
"type": "object",
"required": [
"jobId",
"status"
],
"properties": {
"error": {
"type": "string",
"maxLength": 256
},
"jobId": {
"type": "string",
"maxLength": 128
},
"status": {
"type": "string",
"maxLength": 64,
"knownValues": [
"pending",
"running",
"completed",
"failed",
"paused",
"cancelled"
]
},
"results": {
"type": "array",
"items": {
"ref": "#migrationResult",
"type": "ref"
}
},
"progress": {
"ref": "#progressView",
"type": "ref"
}
}
},
"encoding": "application/json"
},
"parameters": {
"type": "params",
"required": [
"jobId"
],
"properties": {
"jobId": {
"type": "string",
"maxLength": 128
}
}
},
"description": "Get the status of a migration background job."
}