ArgorantDocs

Block an address or domain

posthttps://app.argorant.com/api/v1/blocklist
POST
/api/v1/blocklist

Send an email address or a domain. Matching leads already enrolled in your campaigns are suppressed immediately; future enrollments skip them.

Remove with DELETE /api/v1/blocklist/{id}.

Authorization

BearerAuth
AuthorizationBearer <token>

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

In: header

Request Body

application/json

TypeScript Definitions

Use the request body type in TypeScript.

Response Body

application/json

application/json

Shell
curl -X POST "https://app.argorant.com/api/v1/blocklist" \  -H "Content-Type: application/json" \  -d '{    "value": "competitor.com",    "reason": "customer"  }'
JSON
{  "ok": true,  "id": "c9a94730-604c-4156-bee1-d52e24a3f847",  "type": "domain",  "value": "competitor.com",  "leads_suppressed": 3}