# Convrgent.ai Vault Profile Delete

> Convrgent.ai Vault Profile Delete is a paid API for AI agents from convrgent.ai, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-15).

Permanently deletes a stored human personality profile from the convrgent.ai vault by profile identifier

## Facts

- Endpoint: POST https://convrgent.ai/api/vault/delete
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/convrgent-ai-74fd8a9c
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_vMGmnMMmlZd49sKcD-PIr

Status and success rate cover calls made through Zero and Zero's own probes. Third-party monitors may report differently.

## How to call it through Zero

Zero handles the 402 payment challenge and records the run. With the Zero CLI installed (`npm i -g @zeroxyz/cli`):

```sh
zero fetch --capability convrgent-ai-74fd8a9c -d '<json body>'
```

Example prompt: Delete the vault profile for contact ID 'human_abc123' from my convrgent.ai vault — I no longer need that personality record stored.

## When to prefer this

Use this endpoint when you need to permanently remove a stored human personality profile from the convrgent.ai vault. Choose this over update endpoints when the intent is full removal rather than modification. Appropriate when cleaning up stale records, handling data deletion requests, or managing vault storage for profiles no longer needed by the agent.

## Known failure modes

- Profile ID not found — returns 404 or similar not-found error
- Unauthorized deletion attempt — wallet address does not own the profile namespace
- Invalid or missing profile identifier in request body
- Payment failure via x402 protocol — USDC transaction not completed
- Profile already deleted — attempting to delete a non-existent record

## How this service works

Delete a human profile from the vault. Near-free pricing maintains consistent x402 payment flow for wallet identification.

## Output

A confirmation response indicating that the specified human profile has been permanently deleted from the vault, typically including the profile ID and deletion status.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "bodyType",
    "body",
    "method"
   ],
   "properties": {
    "body": {
     "required": [
      "human_id"
     ],
     "properties": {
      "human_id": {
       "type": "string",
       "description": "Profile identifier to delete"
      }
     }
    },
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "POST"
     ],
     "type": "string"
    },
    "bodyType": {
     "enum": [
      "json",
      "form-data",
      "text"
     ],
     "type": "string"
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "deleted": true,
  "human_id": "alice-chen-001"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/convrgent-ai-74fd8a9c/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from convrgent.ai](https://www.zero.xyz/host/convrgent.ai/llms.txt)
