> ## Documentation Index
> Fetch the complete documentation index at: https://docs.bizzy.ai/llms.txt
> Use this file to discover all available pages before exploring further.

# List Import Queue Sessions

Get a paginated list of all import queue sessions for your team. Each session represents a batch import operation. Sessions are returned in descending order by creation date (most recent first).

## Request

#### Query Parameters

<ParamField path="offset" type="number" default={0}>
  The number of items to skip before starting to collect the result set
</ParamField>

<ParamField path="limit" type="number" default={4}>
  The maximum number of items to return
</ParamField>

## Response

<ResponseExample>
  ```json Response - 200 theme={null}
  {
    "data": [
      {
        "sessionId": 3456790,
        "agentId": 1234567,
        "status": "PENDING",
        "createdAt": "2025-12-17T16:18:00.000Z"
      },
      {
        "sessionId": 3456789,
        "agentId": 1234567,
        "status": "COMPLETED",
        "createdAt": "2025-12-17T11:42:00.000Z"
      }
    ],
    "pagination": {
      "limit": 4,
      "offset": 0,
      "total": 2
    }
  }
  ```
</ResponseExample>

<ResponseField name="data" type="array">
  Array of import queue session objects

  <Expandable title="Session properties">
    <ResponseField name="sessionId" type="number">
      Unique identifier for the import session
    </ResponseField>

    <ResponseField name="agentId" type="number">
      The ID of the agent this session belongs to
    </ResponseField>

    <ResponseField name="status" type="string">
      Current status of the import session. Can be one of:

      * `PENDING` - Session is open and accepting companies
      * `PROCESSING` - Session is being processed
      * `COMPLETED` - Session has been successfully processed
    </ResponseField>

    <ResponseField name="createdAt" type="string">
      ISO 8601 timestamp of when the session was created
    </ResponseField>
  </Expandable>
</ResponseField>

<ResponseField name="pagination" type="object">
  Pagination information

  <Expandable title="Pagination properties">
    <ResponseField name="limit" type="number">
      The maximum number of items returned in this response
    </ResponseField>

    <ResponseField name="offset" type="number">
      The number of items skipped
    </ResponseField>

    <ResponseField name="total" type="number">
      The total number of sessions available
    </ResponseField>
  </Expandable>
</ResponseField>
