Add an opportunity stage
Create a stage your pipeline uses, e.g. Proposal sent or Demo scheduled. The key is derived from the label. Delete with DELETE /api/v1/reply-statuses/{key}; conversations carrying it fall back to neutral.
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
application/json
Shell
curl -X POST "https://app.argorant.com/api/v1/reply-statuses" \ -H "Content-Type: application/json" \ -d '{ "label": "Proposal sent", "color": "purple" }'JSON
{ "status": { "key": "proposal_sent", "label": "Proposal sent", "color": "purple", "builtin": false }}