Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
122 changes: 89 additions & 33 deletions chat-apis.json
Original file line number Diff line number Diff line change
Expand Up @@ -1432,8 +1432,8 @@
"type": "object"
},
"example": {
"data": {
"0": {
"data": [
{
"guid": "project-group",
"name": "Project Group",
"description": "project related discussions between members",
Expand All @@ -1449,38 +1449,38 @@
"tags": [
"friends",
"project"
],
"0": {
"guid": "project-group-2",
"name": "Project Group 2",
"description": "project related discussions between members",
"icon": "http://placehold.it/120x120&text=image1",
"type": "public",
"scope": "admin",
"membersCount": 1,
"joinedAt": 1638440784,
"conversationId": "group_project-group",
"hasJoined": true,
"createdAt": 1638440784,
"owner": "superhero4",
"tags": [
"friends",
"project"
]
}
]
},
"meta": {
"pagination": {
"total": 0,
"count": 5,
"per_page": 100,
"current_page": 1,
"total_pages": 1
},
"cursor": {
"updatedAt": 1638354799,
"affix": "prepend"
}
{
"guid": "project-group-2",
"name": "Project Group 2",
"description": "project related discussions between members",
"icon": "http://placehold.it/120x120&text=image1",
"type": "public",
"scope": "admin",
"membersCount": 1,
"joinedAt": 1638440784,
"conversationId": "group_project-group",
"hasJoined": true,
"createdAt": 1638440784,
"owner": "superhero4",
"tags": [
"friends",
"project"
]
}
],
"meta": {
"pagination": {
"total": 0,
"count": 5,
"per_page": 100,
"current_page": 1,
"total_pages": 1
},
"cursor": {
"updatedAt": 1638354799,
"affix": "prepend"
}
}
}
Expand Down Expand Up @@ -2457,6 +2457,14 @@
"schema": {
"type": "integer"
}
},
{
"name": "hideQuotedMessages",
"in": "query",
"description": "If set to true, the API response will exclude all quotedMessage nodes from the returned messages. This allows clients to fetch only the messages without any quoted messages.",
"schema": {
"type": "boolean"
}
}
],
"responses": {
Expand Down Expand Up @@ -3661,6 +3669,22 @@
"type": "integer",
"default": "1"
}
},
{
"name": "hideAgentic",
"in": "query",
"description": "Hides agentic conversations from the list.",
"schema": {
"type": "boolean"
}
},
{
"name": "onlyAgentic",
"in": "query",
"description": "Shows only agentic conversations in the list.",
"schema": {
"type": "boolean"
}
}
],
"responses": {
Expand Down Expand Up @@ -8001,6 +8025,14 @@
"type": "string"
}
}
},
{
"name": "hideQuotedMessages",
"in": "query",
"description": "If set to true, the API response will exclude all quotedMessage nodes from the returned messages. This allows clients to fetch only the messages without any quoted messages.",
"schema": {
"type": "boolean"
}
}
],
"responses": {
Expand Down Expand Up @@ -8471,6 +8503,14 @@
"type": "string"
}
}
},
{
"name": "hideQuotedMessages",
"in": "query",
"description": "If set to true, the API response will exclude all quotedMessage nodes from the returned messages. This allows clients to fetch only the referenced messages without any quoted messages.",
"schema": {
"type": "boolean"
}
}
],
"responses": {
Expand Down Expand Up @@ -16097,6 +16137,14 @@
"custom"
]
},
"quotedMessageId": {
"description": "ID of the message being quoted.\nIf provided, the send message response will include a `quotedMessage` node\nin the response containing the referenced message object.",
"type": "string",
"default": "message",
"enum": [
"message"
]
},
"type": {
"description": "Type of the message.",
"type": "string"
Expand Down Expand Up @@ -17116,6 +17164,14 @@
"message"
]
},
"quotedMessageId": {
"description": "ID of the message being quoted.\nIf provided, the send message response will include a `quotedMessage` node\nin the response containing the referenced message object.",
"type": "string",
"default": "message",
"enum": [
"message"
]
},
"type": {
"description": "Type of the message. The available values are text, image, file, audio, video.",
"type": "string",
Expand Down
Loading