Skip to main content
DELETE
/
api
/
v1
/
campaigns
/
{uuid}
/
pools
/
{pool_uuid}
Detach a pool from a campaign
curl --request DELETE \
  --url https://{subdomain}.mihu.ai/api/v1/campaigns/{uuid}/pools/{pool_uuid} \
  --header 'Authorization: Bearer <token>'
{
  "success": true,
  "message": "Pool detached from campaign",
  "data": {
    "campaign_uuid": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
    "pool_uuid": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
    "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 campaign.

pool_uuid
string<uuid>
required

UUID of the pool to detach.

Response

Pool detached. Response includes how many tasks were cancelled.

success
boolean
Example:

true

message
string
Example:

"Pool detached from campaign"

data
object