Skip to main content
GET
https://api.bizzy.ai
/
v1
/
agents
/
import-queue
/
{sessionId}
Get Import Queue Session
curl --request GET \
  --url https://api.bizzy.ai/v1/agents/import-queue/{sessionId} \
  --header 'Authorization: Bearer <token>'
{
  "sessionId": 3456789,
  "agentId": 1234567,
  "status": "PENDING"
}
Get details about a specific import queue session, including its current status and associated agent.

Request

Path Parameters

sessionId
string
required
The session ID returned from the start import queue endpoint

Response

{
  "sessionId": 3456789,
  "agentId": 1234567,
  "status": "PENDING"
}
sessionId
number
The unique identifier for the import session
agentId
number
The ID of the agent this session belongs to
status
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

Use Cases

This endpoint is useful for:
  • Checking the current status of an import session
  • Verifying a session exists before adding companies
  • Monitoring the progress of your import

Notes

  • You can only access sessions that belong to your team
  • Use this endpoint to verify session status before calling add companies