Skip to main content
DELETE
/
api
/
v1
/
data
/
{uuid}
/
records
/
{record}
Delete a record
curl --request DELETE \
  --url https://{subdomain}.mihu.ai/api/v1/data/{uuid}/records/{record} \
  --header 'Authorization: Bearer <token>'
{
  "success": true,
  "message": "Record deleted successfully",
  "data": [
    "<unknown>"
  ]
}

Documentation Index

Fetch the complete documentation index at: https://developers.mindhunters.ai/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

Use a Bearer token to access these API endpoints. Example: "Bearer {your-token}"

Path Parameters

uuid
string<uuid>
required

UUID of the data

record
integer
required

ID of the record

Response

Record deleted successfully

success
boolean

Indicates whether the request completed successfully. True for successful responses; false for documented error responses.

Example:

true

message
string

Human-readable response message. Safe to display in logs or simple client notifications; use structured fields for program logic.

Example:

"Record deleted successfully"

data
any[]