> For the complete documentation index, see [llms.txt](https://docs.tnid.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.tnid.com/api-reference/002_company/017_user_imports/003__get_user_import.md).

# Get User Import

GraphQL endpoint: `/company`

Gets a single user import by ID, including its file name, note and current status. Only the company's own imports are accessible.

## Query

```graphql
query ($id: ID!) {
  userImport(id: $id) {
    id
    fileName
    note
    status
    insertedAt
    updatedAt
  }
}

```

## Variables

```json
{
  "id": "00000000-0000-4000-8000-000000000001"
}
```

## Response

```json
{
  "data": {
    "userImport": {
      "fileName": "user_uploads/t1uxa08l_users.csv",
      "id": "00000000-0000-4000-8000-000000000001",
      "insertedAt": "2026-01-15T09:00:00",
      "note": "test import",
      "status": "UPLOADED",
      "updatedAt": "2026-01-15T09:00:00"
    }
  }
}
```
