Skip to content

Campaigns

briansemify edited this page Oct 20, 2025 · 4 revisions

Campaigns

All endpoints require Authorization.

All campaigns for reseller

  • GET /api/v2/campaigns
  • Returns list of campaigns under reseller scope.

Campaigns for specific account

  • GET /api/v2/accounts/{account_id}/campaigns

Specific campaign details

  • GET /api/v2/campaigns/{campaign_id}

Notes

  • Campaign creation is often returned when creating an account; use returned campaign_id.
  • Campaigns can have notes and other metadata — check notes endpoints for adding/updating.

Examples

  • List campaigns (curl):
curl -H "Authorization: Bearer $TOKEN" "https://developers.semify.com/api/v2/campaigns"

Clone this wiki locally