ArgorantDocs

Replies to a campaign

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

Replies received for this campaign, newest first, with the stored classification. For replies across all campaigns use the Inbox endpoints.

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.

Query Parameters

limit?integer

Rows (max 200).

offset?integer

Rows to skip.

Response Body

application/json

application/json

Shell
curl -X GET "https://app.argorant.com/api/v1/campaigns/7f3a2c1e-9b4d-4e8a-a1c2-5d6e7f8a9b0c/replies?limit=50&offset=0"
JSON
{  "replies": [    {      "id": "a1b2c3d4-0000-4000-8000-000000000001",      "from_email": "jane.doe@example-acme.com",      "first_name": "Jane",      "last_name": "Doe",      "company": "Acme",      "subject": "Re: Quick question, Jane",      "body": "Happy to talk. Does Thursday 10:00 work?",      "classification": "interested",      "event_type": "provider_reply",      "created_at": "2026-09-18T14:03:11+00:00"    }  ],  "limit": 50,  "offset": 0}