ArgorantDocs

Reply statuses

gethttps://app.argorant.com/api/v1/reply-statuses
GET
/api/v1/reply-statuses

The verdicts you can set on a conversation: the built-in ones (positive, meeting_booked, question, referral, not_interested, out_of_office, wrong_person, vendor_pitch, neutral, unsubscribe) plus the opportunity stages your workspace defined.

Authorization

BearerAuth
AuthorizationBearer <token>

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

In: header

Response Body

application/json

application/json

Shell
curl -X GET "https://app.argorant.com/api/v1/reply-statuses"
JSON
{  "statuses": [    {      "key": "positive",      "label": "Interested",      "color": "lime",      "builtin": true    },    {      "key": "meeting_booked",      "label": "Meeting booked",      "color": "lime",      "builtin": true    },    {      "key": "proposal_sent",      "label": "Proposal sent",      "color": "purple",      "builtin": false    }  ]}