> 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/002__list_user_imports.md).

# List User Imports

GraphQL endpoint: `/company`

Lists the company's CSV user imports with their statuses, cursor-paginated. Pass back `paginationInfo.nextCursor` as `cursor` to fetch the next page; it is null on the last page.

## Query

```graphql
query (
  $limit: Int
  $cursor: String
) {
  userImports (
    limit: $limit
    cursor: $cursor
  ) {
    paginationInfo {
      limit
      nextCursor
    }
    records {
      id
      fileName
      note
      status
      insertedAt
      updatedAt
    }
  }
}

```

## Variables

```json
{}
```

## Response

```json
{
  "data": {
    "userImports": {
      "paginationInfo": {
        "limit": 20,
        "nextCursor": null
      },
      "records": [
        {
          "fileName": "user_uploads/ktfwp-8p_users.csv",
          "id": "00000000-0000-4000-8000-000000000001",
          "insertedAt": "2026-01-15T09:00:00",
          "note": null,
          "status": "UPLOADED",
          "updatedAt": "2026-01-15T09:00:00"
        },
        {
          "fileName": "user_uploads/u2_o0qpw_users.csv",
          "id": "00000000-0000-4000-8000-000000000002",
          "insertedAt": "2026-01-15T09:00:00",
          "note": null,
          "status": "UPLOADED",
          "updatedAt": "2026-01-15T09:00:00"
        },
        {
          "fileName": "user_uploads/9ngirtj0_users.csv",
          "id": "00000000-0000-4000-8000-000000000003",
          "insertedAt": "2026-01-15T09:00:00",
          "note": null,
          "status": "UPLOADED",
          "updatedAt": "2026-01-15T09:00:00"
        }
      ]
    }
  }
}
```
