POST

Delete one or more items from agent memory by id, with optional namespace. Backed by Pinecone serverless

/v1/agent/memory/delete

Powered by Pinecone

Request → Response

Examples from schemas.json.

Requestapplication/json
POST /v1/agent/memory/delete
Content-Type: application/json

{
  "ids": [
    "string"
  ],
  "namespace": "example",
  "bytes_hint": 0
}
Responseapplication/json
HTTP/1.1 200 OK
Content-Type: application/json

// Endpoint-specific body after 402 settlement

Overview

Delete one or more items from agent memory by id, with optional namespace. Backed by Pinecone serverless.

Managed vector database for similarity search and AI memory.

Request schema

Body: JSON · application/json

FieldTypeDescription
idsarrayrequired
namespacestringoptionalpattern: ^[\w:.-]+$
bytes_hintintegeroptionalmin: 0
IMPLEMENTATION
curl -X POST https://api.tools402.dev/v1/agent/memory/delete \
  -H "Content-Type: application/json" \
  -d '{
  "ids": [
    "string"
  ],
  "namespace": "example",
  "bytes_hint": 0
}'

402 payment flow omitted — see Integrations for settlement.