Skip to main content
GET
/
api
/
v1
/
pools
/
{uuid}
/
contacts
List contacts in a pool
curl --request GET \
  --url https://{subdomain}.mihu.ai/api/v1/pools/{uuid}/contacts \
  --header 'Authorization: Bearer <token>'
{
  "success": true,
  "message": "Pool contacts retrieved successfully",
  "data": {
    "pool_uuid": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
    "current_page": 1,
    "last_page": 4,
    "per_page": 25,
    "total": 87,
    "data": [
      {
        "contact_uuid": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
        "name": "<string>",
        "phone_number": "<string>",
        "email": "<string>",
        "status": "<string>",
        "priority": 123,
        "retry_count": 123,
        "started_at": "2023-11-07T05:31:56Z",
        "completed_at": "2023-11-07T05:31:56Z",
        "failed_at": "2023-11-07T05:31:56Z",
        "next_retry_at": "2023-11-07T05:31:56Z",
        "notes": "<string>",
        "added_at": "2023-11-07T05:31:56Z"
      }
    ]
  }
}

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 whose members to list.

Query Parameters

page
integer
default:1

1-based page number. Default 1.

per_page
integer
default:25

Items per page. Default 25.

Case-insensitive partial match against the underlying contact's name, surname, email, or phone_number. Combine with status= to filter further.

status
enum<string>

Filter by ContactPoolItem status. Pending = waiting to be picked up. Processing/In_Call = currently being attempted. Retrying = failed once, awaiting retry window. Scheduled = queued for a specific future retry time. Completed/Failed/Skipped = terminal.

Available options:
Pending,
Processing,
Completed,
Failed,
Retrying,
Scheduled,
In_Call,
Skipped

Response

Paginated pool members.

success
boolean
Example:

true

message
string
Example:

"Pool contacts retrieved successfully"

data
object

Paginator payload.