Skip to main content
GET
List Import Sessions

List Import Sessions

Retrieve a paginated list of import sessions for your organization. Use this endpoint to discover sessions that are in progress, find resumable sessions, or review completed imports.
By default, expired sessions are excluded from results. Pass include_expired=true to see sessions past their 24-hour TTL.

Request

Headers

string
required
Your API key for authenticationExample: sk_live_1234567890abcdef
string
required
Your organization UUIDExample: a8315ef3-dd50-43f8-b7ce-d839e68d51fa

Query Parameters

string
Filter by session status.Available values: created, parsed, mapped, validating, validated, submitting, submitted, failed, expiredExample: validated
string
Filter by import template identifier.Example: logistics_requests
string
Filter to sessions created by a specific user (UUID).Example: a8315ef3-dd50-43f8-b7ce-d839e68d51fa
boolean
default:"false"
Include sessions past their expires_at timestamp. By default only active sessions are returned.
integer
default:"1"
Page number for pagination.Example: 2
integer
default:"10"
Number of items per page (1–100).Example: 25

Response

array[object]
Array of import session objects.
integer
Total number of sessions matching the filter.
integer
Current page number.
integer
Number of items per page.

Example

List all active sessions

Filter by status and template

Successful Response

Typical Usage

Session Resume Flow

The primary use case for this endpoint is session resume — finding an in-progress import session so the user can pick up where they left off:

Common Errors

401 Unauthorized

Cause: Missing or invalid API key
Solution: Verify your API key is valid and active. Get a new one from Settings -> API.

422 Validation Error

Cause: Invalid query parameter value (e.g. unrecognized status)
Solution: Check that filter values match the available enum values listed above.

Create Import Session

Upload a file and start a new import session

Get Session Status

Check the status of a specific import session

Get Provider Options

Resolve template option sources into selectable values

Imports Overview

Full end-to-end import workflow guide