Skip to main content
GET
/
v1
/
export
/
formats
List Export Formats
curl --request GET \
  --url https://api.migma.ai/v1/export/formats \
  --header 'Authorization: Bearer <token>'
{
  "success": true,
  "data": {
    "formats": [
      {
        "name": "<string>",
        "description": "<string>",
        "supportedFormats": [
          "<string>"
        ],
        "type": "simple"
      }
    ],
    "total": 123
  },
  "error": "<string>"
}

Authorizations

Authorization
string
header
required

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

Response

Available export formats retrieved

success
boolean
required
data
object
error
string | null