Company logoTrust Center Documentation

List imports

Retrieve the import sessions for the current tenant with their progress counters. Browse request parameters, authentication requirements, response payloads,…

GET
/api/v1/imports

Retrieve the import sessions for the current tenant with their progress counters.

Authorization

bearerAuth
AuthorizationBearer <token>

In: header

Response Body

application/json

curl -X GET "https://example.com/api/v1/imports"
{  "imports": [    {      "id": "550e8400-e29b-41d4-a716-446655440000",      "sourceLabel": "security-questionnaire.xlsx",      "sourceType": "spreadsheet",      "state": "ready_for_review",      "phase": "prepare",      "rowCount": 120,      "validCount": 114,      "warningCount": 4,      "errorCount": 2,      "progressCurrent": 120,      "progressTotal": 120,      "updatedAt": "2025-01-15T10:00:00Z"    }  ]}

How is this guide?