DELETE
/
memory-blobs
/
{blobId}
curl --request DELETE \
  --url https://api.memoram.app/api/v1/memory-blobs/{blobId} \
  --header 'Authorization: Bearer <token>'
{
  "success": true
}

Permanently delete a specific memory blob. Requires the user’s ID.

This operation is irreversible.

Authorization

Requires Bearer token authentication using your Developer JWT.

Authorizations

Authorization
string
header
required

JWT token obtained via /auth/token endpoint.

Path Parameters

blobId
string
required

The unique ID of the memory blob to delete.

Query Parameters

user_id
string
required

The unique ID of the user who owns the memory blob.

Response

200
application/json

Memory blob deleted successfully.

The response is of type object.