# DELETE /lead-gen/initiatives/:id/steps/:stepId

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

Remove a step from an initiative. Subsequent steps are re-numbered to fill the gap. Returns 204 No Content on success.

## Parameters

| Name | In | Type | Required | Description |
|------|----|------|----------|-------------|
| `id` | path | uuid | yes | Initiative UUID |
| `stepId` | path | uuid | yes | Step UUID to remove |

## Request example

```bash
curl -X DELETE \
  "https://api.trustpager.com/functions/v1/api/v1/lead-gen/initiatives/a1b2c3d4-.../steps/s1b2c3d4-..." \
  -H "Authorization: Bearer YOUR_API_KEY"
```

## Response example

```json
HTTP 204 No Content
```

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