ethora-app-delete-chat
Delete a user-created chat on Ethora by specifying the appId and chatJid. Simplifies chat management within the Ethora MCP Server platform.
Instructions
Delete a chat for the logged-in user who has created the app.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
appId | Yes | appId for app | |
chatJid | Yes | title for chat |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"appId": {
"description": "appId for app",
"type": "string"
},
"chatJid": {
"description": "title for chat",
"type": "string"
}
},
"required": [
"appId",
"chatJid"
],
"type": "object"
}