dograh/docs/api-reference/campaigns/progress.mdx
Sabiha Khan f075bcb623
docs: add developer and api reference tabs (#190)
* docs: add developer and api reference tabs

* fix: remove duplicate image
2026-03-14 16:30:02 +05:30

16 lines
608 B
Text
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

---
title: "Get Campaign Progress"
description: "Get the current progress of a campaign"
openapi: "GET /api/v1/campaign/{campaign_id}/progress"
---
Returns a real-time snapshot of how many contacts have been processed.
| Field | Description |
|---|---|
| `total` | Total number of contacts in the campaign |
| `processed` | Contacts that have been attempted at least once |
| `completed` | Contacts with a successful call outcome |
| `failed` | Contacts that exhausted all retry attempts without success |
| `pending` | Contacts not yet attempted |
| `completion_percentage` | `processed / total × 100` |