Update an AI agent conversation in an organization
A unique entity identifier
^[a-zA-Z0-9_-]+$The unique ID of the agent conversation (its client-generated local id, or "default" for the default conversation)
The new title of the conversation.
The updated conversation.
Type of Object, always equals to "agent-conversation"
The unique ID of the conversation. This is the client-generated identifier used to address the conversation; for the default conversation of a change request it is "default".
The title of the conversation, generated from the first message. Absent until generated.
Whether the conversation is shared with everyone who has access to its context, rather than only its creator. Conversations are shared by default; a private conversation is only ever visible to its creator and stays private for good.
The change request the conversation is currently editing in. Only set for organization agent conversations, which start without one and attach a change request the first time the agent needs to change content. Absent for change request conversations, whose change request is the conversation's context.
PATCH /v1/orgs/{organizationId}/agent/conversations/{conversationId} HTTP/1.1
Host: api.gitbook.com
Authorization: Bearer YOUR_SECRET_TOKEN
Content-Type: application/json
Accept: */*
Content-Length: 16
{
"title": "text"
}The updated conversation.
{
"object": "agent-conversation",
"id": "text",
"title": "text",
"shared": true,
"changeRequest": "text",
"createdAt": "2026-01-01T00:00:00.000Z",
"updatedAt": "2026-01-01T00:00:00.000Z"
}Last updated
Was this helpful?