ArgorantDocs

Get a campaign

gethttps://app.argorant.com/api/v1/campaigns/{campaign_id}
GET
/api/v1/campaigns/{campaign_id}

The campaign with its emails, senders and launch_blockers: what still has to happen before a launch is accepted.

Authorization

BearerAuth
AuthorizationBearer <token>

Your API key from app.argorant.com/profile, sent as Authorization: Bearer <key>.

In: header

Path Parameters

campaign_id*string

Campaign id.

Response Body

application/json

application/json

Shell
curl -X GET "https://app.argorant.com/api/v1/campaigns/7f3a2c1e-9b4d-4e8a-a1c2-5d6e7f8a9b0c"
JSON
{  "campaign": {    "id": "7f3a2c1e-9b4d-4e8a-a1c2-5d6e7f8a9b0c",    "name": "Q4 CFO outreach",    "status": "draft",    "lead_count": 1188,    "inbox_count": 12  },  "launch_blockers": [],  "emails": [    {      "step": 1,      "subject": "Quick question, {{first_name}}",      "body": "Hi {{first_name}}, …",      "delay_days": 0,      "same_thread": false    },    {      "step": 2,      "subject": "Re: Quick question, {{first_name}}",      "body": "Bumping this.",      "delay_days": 3,      "same_thread": true    }  ],  "senders": [    {      "email": "elena@northgate-advisory.com",      "provider": "google",      "status": "connected",      "health": "healthy"    }  ]}