Company logoTrust Center Documentation
API v1 ReferenceImportsActive

List active imports

Retrieve the same sessions as the list endpoint with a smaller payload, for polling progress while an import runs.

GET
/api/v1/imports/active

Retrieve the same sessions as the list endpoint with a smaller payload, for polling progress while an import runs.

Authorization

bearerAuth
AuthorizationBearer <token>

In: header

Response Body

application/json

curl -X GET "https://example.com/api/v1/imports/active"
{  "imports": [    {      "id": "550e8400-e29b-41d4-a716-446655440000",      "sourceLabel": "security-questionnaire.xlsx",      "state": "preparing",      "rowCount": 120,      "validCount": 80,      "errorCount": 0,      "progressCurrent": 80,      "progressTotal": 120,      "updatedAt": "2025-01-15T10:00:00Z"    }  ]}

How is this guide?