Skip to main content
DELETE
/
api
/
v1
/
research
/
{id}
Delete a research person (partner API)
curl --request DELETE \
  --url https://app.puffle.ai/api/v1/research/{id} \
  --header 'Authorization: Bearer <token>'
{
  "success": true
}

Overview

Remove a partner-scoped research person. Cascades to delete all raw enrichment data and every report version via FK. Irreversible. Does NOT cancel an in-flight Trigger.dev enrichment task — a running pipeline will finish and its writes will fail silently.
This operation shares the URL path /api/v1/research/{id} with other verbs. See the sibling page for related operations on the same resource.

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

id
string<uuid>
required

Deep research person UUID

Pattern: ^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$

Response

Person and all cascaded data removed.

success
enum<boolean>
required
Available options:
true