ethora-app-create-chat
Enable users to create new chats within their applications, specifying app IDs, chat titles, and pin preferences for organized communication.
Instructions
Create a new chat for the logged-in user who has created the app.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
appId | Yes | appId for app | |
pinned | Yes | pinned for chat | |
title | 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"
},
"pinned": {
"description": "pinned for chat",
"type": "boolean"
},
"title": {
"description": "title for chat",
"type": "string"
}
},
"required": [
"appId",
"title",
"pinned"
],
"type": "object"
}