Chat

Create or update an existing chat

PUT
/api/v1/chat/update
/api/v1/chat/update

The Authorization access token

Authorization

Authorization
Required
<token>

Please enter a valid access token

In: header

Request Body

application/jsonOptional

The chat to create or update

chatId
Required
string

Minimum length: 1

spaceIdstring | null

teamIdstring | null

messagesarray | null

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

OK