# GET /lead-gen/initiatives/:id/enrolments

**Resource:** [Lead Generation](./lead-gen.md)  
**Scopes:** `lead-gen:read`  
**Write operation:** no

List enrolments for an initiative. Returns each enrolment with the lead's details, current step number, status, and next scheduled action date.

## Parameters

| Name | In | Type | Required | Description |
|------|----|------|----------|-------------|
| `id` | path | uuid | yes | Initiative UUID |
| `status` | query | string | no | Filter by enrolment status: active, completed, unsubscribed, failed |
| `limit` | query | integer | no | Max results (default: 50) |
| `after` | query | string | no | Pagination cursor |

## Request example

```bash
curl \
  "https://api.trustpager.com/functions/v1/api/v1/lead-gen/initiatives/a1b2c3d4-.../enrolments?status=active" \
  -H "Authorization: Bearer YOUR_API_KEY"
```

## Response example

```json
{
  "data": [
    {
      "id": "e1...",
      "lead_name": "Acme Plumbing",
      "lead_email": "info@acmeplumbing.com",
      "current_step": 1,
      "status": "active",
      "next_action_at": "2026-05-04T10:00:00Z"
    }
  ],
  "pagination": { "has_more": true, "next_cursor": "e2..." }
}
```

---
Base URL: `https://api.trustpager.com/functions/v1/api/v1` — Auth: `Authorization: Bearer YOUR_API_KEY`