Skip to main content
GET
/
v1
/
projects
/
import
/
{projectId}
/
status
Get Import Status
curl --request GET \
  --url https://api.migma.ai/v1/projects/import/{projectId}/status \
  --header 'Authorization: Bearer <token>'
{
  "success": true,
  "data": {
    "status": "pending",
    "name": "<string>",
    "description": "<string>",
    "progress": {
      "stage": "initializing",
      "percentage": 50
    },
    "projectId": "<string>",
    "domain": "<string>",
    "error": "<string>"
  },
  "error": "<string>"
}

Authorizations

Authorization
string
header
required

JWT Bearer token authentication. Use 'Authorization: Bearer ' where the JWT token is obtained from the login endpoint.

Path Parameters

projectId
string
required

Project ID (MongoDB ObjectId)

Response

Import status response

success
boolean
required
data
object
error
string | null