Skip to main content
GET
/
api
/
v1
/
pools
/
{uuid}
Get pool details, including attached campaigns and pool item status counts
curl --request GET \
  --url https://{subdomain}.mihu.ai/api/v1/pools/{uuid} \
  --header 'Authorization: Bearer <token>'
{
  "success": true,
  "message": "Pool retrieved successfully",
  "data": {
    "uuid": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
    "name": "<string>",
    "description": "<string>",
    "type": "FIFO",
    "max_parallel_items": 123,
    "max_retries": 123,
    "is_active": true,
    "contacts_count": 123,
    "created_at": "2023-11-07T05:31:56Z",
    "updated_at": "2023-11-07T05:31:56Z",
    "status_counts": {},
    "campaigns": [
      {
        "uuid": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
        "name": "<string>",
        "status": "<string>"
      }
    ]
  }
}

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 retrieve.

Response

Pool detail with status counts and attached campaigns.

success
boolean
Example:

true

message
string
Example:

"Pool retrieved successfully"

data
object

Pool resource with status counts and attached campaigns. Returned by GET /api/v1/pools/{uuid}.