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

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
Example:

true

message
string
Example:

"Record deleted successfully"

data
any[]