DELETE
/
bulk
/
imports
/
{id}
# To get the unique host for an index,
# see https://docs.pinecone.io/guides/data/target-an-index
PINECONE_API_KEY="YOUR_API_KEY"
INDEX_HOST="INDEX_HOST"

curl -X DELETE "https://{INDEX_HOST}/bulk/imports/101" \
  -H 'Api-Key: $YOUR_API_KEY' \
  -H "X-Pinecone-API-Version: 2025-04"
{}

This feature is in public preview and available only on Standard and Enterprise plans.

# To get the unique host for an index,
# see https://docs.pinecone.io/guides/data/target-an-index
PINECONE_API_KEY="YOUR_API_KEY"
INDEX_HOST="INDEX_HOST"

curl -X DELETE "https://{INDEX_HOST}/bulk/imports/101" \
  -H 'Api-Key: $YOUR_API_KEY' \
  -H "X-Pinecone-API-Version: 2025-04"
{}

Authorizations

Api-Key
string
header
required

An API Key is required to call Pinecone APIs. Get yours from the console.

Path Parameters

id
string
required

Unique identifier for the import operation.

Required string length: 1 - 1000

Response

200
application/json
Operation cancelled successfully

The response for the cancel_import operation.