Analytics apiConversationConversations

Delete Conversation

DELETE
/conversations/{id}

Authorization

AuthorizationRequiredBearer <token>

The API key for a Web integration. For more details, see authentication documentation

In: header

AuthorizationRequiredBearer <token>

The API key for an API integration. For more details, see authentication documentation

In: header

Path Parameters

idRequiredstring

Response Body

Conversation deleted successfully

successRequiredboolean
messageRequiredstring
export interface Response {
  success: boolean;
  message: string;
}
 
curl -X DELETE "https://api.analytics.inkeep.com/conversations/string" \
  -H "Authorization: Bearer <token>"
{
  "success": true,
  "message": "string"
}