VendorBulk Import
List Bulk Import Jobs
List Bulk Import Jobs — vendor REST API endpoint.
GET
/vendor/products/importVendor bearer token requiredList Bulk Import Jobs
List async CSV bulk import jobs for your vendor.
What this means in plain English
Returns paginated bulk import jobs with status and progress. Requires OWNER, ADMIN, or EDITOR role.
When to use this
- Monitoring catalog import progress.
- Checking status of a large CSV upload.
Query parameters
| Name | Type | Required | Description |
|---|---|---|---|
| page | integer | No | Page number (default 1). |
| limit | integer | No | Items per page (max 100, default 20). |
Headers
| Name | Type | Required | Description |
|---|---|---|---|
| X-Vendor-Id | string (UUID) | Yes | UUID of the vendor context. Required for vendor-scoped endpoints when your account has multiple vendor memberships. Use the vendor.id from the login response. |
Request example
curl -X GET 'http://localhost:8080/api/v1/vendor/products/import?page=1&limit=20' \
-H 'X-Vendor-Id: 550e8400-e29b-41d4-a716-446655440010'Response examples
200Success
{
"items": [{
"id": "550e8400-e29b-41d4-a716-446655440050",
"status": "PROCESSING",
"filename": "catalog.csv",
"totalRows": 1200,
"processedRows": 450
}],
"totalCount": 5,
"page": 1,
"limit": 20,
"hasMore": false
}Status codes
200
OK
Request succeeded.
401
Unauthorized
Missing or invalid bearer token.
403
Forbidden
Insufficient permissions for this action.
400
Bad Request
Validation failed or invalid parameters.
404
Not Found
Resource not found.
500
Internal Server Error
Unexpected server error.
403
Forbidden
Invalid X-Vendor-Id, no vendor membership, or insufficient vendor role (requires OWNER, ADMIN, or EDITOR for write operations).
Try it
Uses your saved session from login. Edit values and send a live request, or copy the cURL command.