Skip to main content
GET
https://api.bizzy.ai
/
v1
/
agents
/
import-queue
List Import Queue Sessions
curl --request GET \
  --url https://api.bizzy.ai/v1/agents/import-queue \
  --header 'Authorization: Bearer <token>'
{
  "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
  }
}
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

offset
number
default:0
The number of items to skip before starting to collect the result set
limit
number
default:4
The maximum number of items to return

Response

{
  "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
  }
}
data
array
Array of import queue session objects
pagination
object
Pagination information