Chat

Create a new chat

POST
/api/v1/chat/create
/api/v1/chat/create

The Authorization access token

Authorization

Authorization
Required
<token>

Please enter a valid access token

In: header

Request Body

application/jsonOptional

The chat to create

chatId
Required
string

Minimum length: 1

spaceIdstring | null

teamIdstring | null

title
Required
string

Minimum length: 1

messagesarray | null

curl -X POST "https://example.com/api/v1/chat/create" \
  -H "Authorization: <token>" \
  -H "Content-Type: application/json" \
  -d '{
    "chatId": "string",
    "spaceId": null,
    "teamId": null,
    "title": "string",
    "messages": null
  }'

OK