Contexte géant
Base de connaissancesDéveloppeurs
Le Sign Up Now

Chat

Manage chat conversations, messages, and prompts.


GET

Get chat conversation with paginated messages

/organizations/{organizationId}/projects/{projectId}/apps/chat/{appId}/conversations/{conversationId}

Retrieve a chat conversation with cursor-based paginated messages. Without a cursor, returns the most recent messages (up to limit). Use direction=older with cursor/cursorId to load history.

Parameters
cursor
query · string
cursorId
query · string
direction
query · union
limit
query · number
organizationIdRequired
path · string
projectIdRequired
path · string
appIdRequired
path · string
conversationIdRequired
path · string
SDK
import { createGiantContext } from "@giantcontext/sdk-typescript";
const gc = createGiantContext({ apiKey: process.env.GIANTCONTEXT_API_KEY! });
const { data: conversation } = await gc.chat.getChatConversation({  organizationId: "org_123",  projectId: "proj_123",  appId: "app_123",  conversationId: "conv_123"});
GET

Get all chat conversations

/organizations/{organizationId}/projects/{projectId}/apps/chat/{appId}/conversations

List all chat conversations for a given chat app. Returns a paginated list of conversations with their IDs, titles, visitor IDs, and timestamps. Supports search filtering by conversation title or visitor ID. Results are ordered by most recently updated first. This is an admin-only endpoint used to review and manage all customer chat conversations.

Parameters
page
query · number
pageSize
query · number
search
query · string
organizationIdRequired
path · string
projectIdRequired
path · string
appIdRequired
path · string
SDK
import { createGiantContext } from "@giantcontext/sdk-typescript";
const gc = createGiantContext({ apiKey: process.env.GIANTCONTEXT_API_KEY! });
const { data: conversations } = await gc.chat.listChatConversations({  organizationId: "org_123",  projectId: "proj_123",  appId: "app_123"});

Built byHuman
This content was designed and written by a human.
[0]
Colonne
    Colonne 2
    • Discord
    • BlueSky

    © 2026 Giant Context
    ConfidentialitéConditions d'utilisationPolitique relative aux cookies
    Chat