curl --request GET \
--url https://studio.edgeimpulse.com/v1/api/{projectId}/jobs/impulse-migration/status \
--header 'x-api-key: <api-key>'
{
"success": true,
"error": "<string>",
"job": {
"id": 123,
"category": "<string>",
"categoryKey": "<string>",
"key": "<string>",
"created": "2023-11-07T05:31:56Z",
"started": "2023-11-07T05:31:56Z",
"finished": "2023-11-07T05:31:56Z",
"finishedSuccessful": true,
"jobNotificationUids": [
123
],
"additionalInfo": "<string>",
"computeTime": 123,
"createdByUser": {
"id": 123,
"name": "<string>",
"username": "<string>",
"photo": "<string>"
},
"categoryCount": 123,
"metadata": {}
}
}
Get the status for the multi-impulse migration job in this project. This is a separate route so public projects can access it. If no multi-impulse migration jobs are present, an error will be thrown.
curl --request GET \
--url https://studio.edgeimpulse.com/v1/api/{projectId}/jobs/impulse-migration/status \
--header 'x-api-key: <api-key>'
{
"success": true,
"error": "<string>",
"job": {
"id": 123,
"category": "<string>",
"categoryKey": "<string>",
"key": "<string>",
"created": "2023-11-07T05:31:56Z",
"started": "2023-11-07T05:31:56Z",
"finished": "2023-11-07T05:31:56Z",
"finishedSuccessful": true,
"jobNotificationUids": [
123
],
"additionalInfo": "<string>",
"computeTime": 123,
"createdByUser": {
"id": 123,
"name": "<string>",
"username": "<string>",
"photo": "<string>"
},
"categoryCount": 123,
"metadata": {}
}
}
Project ID
OK
The response is of type object
.