Skip to main content
CampaignsResource is reachable on every Kataven Node client as client.campaigns. Each method maps to one HTTP endpoint on the Hub API; links to the underlying spec entry are inline below. Bulk outbound campaigns dialled from CSV with cap-aware concurrency, retry logic, and live progress metrics over Server-Sent Events.

Methods at a glance

Reference

client.campaigns.list(...)

List campaigns HTTPGET /api/v1/campaigns · API reference →

client.campaigns.get(...)

Get a campaign HTTPGET /api/v1/campaigns/{id} · API reference →

client.campaigns.start(...)

Start a campaign HTTPPOST /api/v1/campaigns/{id}/start · API reference →
Flips the campaign from draft/paused to running. The dispatcher goroutine begins originating calls subject to per-tenant rate caps.

client.campaigns.pause(...)

Pause a running campaign HTTPPOST /api/v1/campaigns/{id}/pause · API reference →
Stops the dispatcher from originating new calls; in-flight calls finish naturally.

client.campaigns.resume(...)

Resume a paused campaign HTTPPOST /api/v1/campaigns/{id}/resume · API reference →

client.campaigns.stop(...)

Stop a campaign permanently HTTPPOST /api/v1/campaigns/{id}/stop · API reference →
Terminal state — no further dispatches, contacts in pending move to cancelled. Cannot be reversed; create a new campaign to redo the work.

client.campaigns.delete(...)

Delete a campaign HTTPDELETE /api/v1/campaigns/{id} · API reference →
Refuses if the campaign is running. Pause or stop it first.

client.campaigns.listContacts(...)

List contacts in a campaign HTTPGET /api/v1/campaigns/{id}/contacts · API reference →