v1

latestOpenAPI 3.0.3Apache 2.02026-07-1372170520.1 KB
Bulk Operations

Describe an import

Return details of a specific import operation.

For guidance and examples, see Import data.

get/bulk/imports/{id}

Path parameters

idstring required

Unique identifier for the import operation.

Headers

X-Pinecone-Api-Versionstring required

Required date-based version header

Response

Details of the import operation.

idstring

Unique identifier for the import operation.

uristring

The URI from where the data is imported.

statusstring

The status of the operation. Possible values: Pending, InProgress, Failed, Completed, or Cancelled.

createdAtstring date-time

The start time of the import operation.

finishedAtstring date-time

The end time of the import operation.

percentCompletenumber float

The progress made by the operation, as a percentage.

recordsImportedinteger

The number of records successfully imported.

errorstring

The error message if the import process failed.

Example response

{
  "id": "101",
  "status": "Pending",
  "percentComplete": 42.2,
  "recordsImported": 1000000
}