Skip to main content
GET
/
v1
/
export
/
status
/
{conversationId}
Get Export Status
curl --request GET \
  --url https://api.migma.ai/v1/export/status/{conversationId} \
  --header 'Authorization: Bearer <token>'
{
  "success": true,
  "data": {
    "conversationId": "<string>",
    "canExport": true,
    "availableFormats": [
      "<string>"
    ],
    "reason": "<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

conversationId
string
required

The conversation ID to check

Response

Export status retrieved

success
boolean
required
data
object
error
string | null