Conversations

Create or update the reply draft

Create or update the reply draft.

POST
/conversation/{conversation_id}/draft

Create or update the reply draft.

Authorization

bearerToken
AuthorizationBearer <token>

Personal access tokens created from the ThriveDesk UI. Create one under Integrations -> API Keys.

In: header

Path Parameters

conversation_id*string

Conversation identifier.

Request Body

application/json

TypeScript Definitions

Use the request body type in TypeScript.

Response Body

application/json

application/json

application/json

application/json

application/json

application/json

application/json

curl -X POST "https://example.com/conversation/string/draft" \  -H "Content-Type: application/json" \  -d '{    "message": "<p>Hi Jane, a replacement is on the way.</p>",    "cc": [      "[email protected]"    ]  }'
{  "message": "string",  "draft_id": "string"}