ArgorantDocs

Choose the sending mailboxes

posthttps://app.argorant.com/api/v1/campaigns/{campaign_id}/senders
POST
/api/v1/campaigns/{campaign_id}/senders

Attach connected mailboxes by address, or every connected mailbox with all_connected. Sends are spread across them within each mailbox's daily limit.

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.

Request Body

application/json

TypeScript Definitions

Use the request body type in TypeScript.

Response Body

application/json

application/json

application/json

Shell
curl -X POST "https://app.argorant.com/api/v1/campaigns/7f3a2c1e-9b4d-4e8a-a1c2-5d6e7f8a9b0c/senders" \  -H "Content-Type: application/json" \  -d '{    "emails": [      "elena@northgate-advisory.com",      "marina@northgate-partners.co"    ],    "all_connected": false  }'
JSON
{  "attached": 2,  "senders": [    "elena@northgate-advisory.com",    "marina@northgate-partners.co"  ]}