ArgorantDocs

Set the verdict

posthttps://app.argorant.com/api/v1/inbox/{thread_id}/classify
POST
/api/v1/inbox/{thread_id}/classify

Stores your verdict on the conversation: any key from GET /api/v1/reply-statuses, built-in or your own stage.

Authorization

BearerAuth
AuthorizationBearer <token>

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

In: header

Path Parameters

thread_id*string

The id from the list.

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/inbox/native-conversation:lead:7f3a2c1e-9b4d-4e8a-a1c2-5d6e7f8a9b0c:0c9d8e7f-6a5b-4c3d-8e2f-1a0b9c8d7e6f/classify" \  -H "Content-Type: application/json" \  -d '{    "classification": "meeting_booked"  }'
JSON
{  "ok": true,  "id": "native-conversation:lead:7f3a2c1e-9b4d-4e8a-a1c2-5d6e7f8a9b0c:0c9d8e7f-6a5b-4c3d-8e2f-1a0b9c8d7e6f",  "classification": "meeting_booked"}