You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: spec.json
+18-3Lines changed: 18 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -4328,12 +4328,17 @@
4328
4328
"post": {
4329
4329
"operationId": "CreateConversation",
4330
4330
"summary": "Start a new chat conversation",
4331
-
"description": "Create a new AI chat conversation",
4331
+
"description": "Create a new AI chat conversation. Note that this endpoint does not currently support API key authentication.",
4332
4332
"parameters": [
4333
4333
{
4334
4334
"$ref": "#/components/parameters/team_name"
4335
4335
}
4336
4336
],
4337
+
"security": [
4338
+
{
4339
+
"cookieAuth": []
4340
+
}
4341
+
],
4337
4342
"requestBody": {
4338
4343
"required": true,
4339
4344
"content": {
@@ -4377,7 +4382,12 @@
4377
4382
"get": {
4378
4383
"operationId": "GetConversation",
4379
4384
"summary": "Retrieve a chat conversation",
4380
-
"description": "Get details of an existing AI chat conversation. Useful for polling for updates.",
4385
+
"description": "Get details of an existing AI chat conversation. Useful for polling for updates. Note that this endpoint does not currently support API key authentication.",
4386
+
"security": [
4387
+
{
4388
+
"cookieAuth": []
4389
+
}
4390
+
],
4381
4391
"parameters": [
4382
4392
{
4383
4393
"$ref": "#/components/parameters/team_name"
@@ -4417,7 +4427,7 @@
4417
4427
"post": {
4418
4428
"operationId": "SendMessage",
4419
4429
"summary": "Add a message to an existing conversation",
4420
-
"description": "Send a new message to an existing AI chat conversation",
4430
+
"description": "Send a new message to an existing AI chat conversation. Note that this endpoint does not currently support API key authentication.",
0 commit comments