Skip to main content
DELETE
/
api
/
v1
/
pools
/
{uuid}
/
contacts
/
{contact_uuid}
Remove a contact from a pool
curl --request DELETE \
  --url https://{subdomain}.mihu.ai/api/v1/pools/{uuid}/contacts/{contact_uuid} \
  --header 'Authorization: Bearer <token>'
{
  "success": true,
  "message": "Contact removed from pool",
  "data": {
    "tasks_cancelled": 123
  }
}

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 pool to remove the contact from.

contact_uuid
string<uuid>
required

UUID of the contact to remove.

Response

Contact removed. Response includes how many tasks were cancelled.

success
boolean
Example:

true

message
string
Example:

"Contact removed from pool"

data
object