Bulk Operations
List imports
List all recent and ongoing import operations.
By default, list_imports returns up to 100 imports per page. If the limit parameter is set, list returns up to that number of imports instead. Whenever there are additional IDs to return, the response also includes a pagination_token that you can use to get the next batch of imports. When the response does not include a pagination_token, there are no more imports to return.
For guidance and examples, see Import data.
get/bulk/imports
Query parameters
limitinteger
Max number of operations to return per page.
paginationTokenstring
Pagination token to continue a previous listing operation.
Headers
X-Pinecone-Api-Versionstring required
Required date-based version header
Response
A list of import operations
Example response
{
"data": [
{
"id": "101",
"status": "Pending",
"percentComplete": 42.2,
"recordsImported": 1000000
}
],
"pagination": {
"next": "Tm90aGluZyB0byBzZWUgaGVyZQo="
}
}