PATCH /v1/conversations/\{id\}
Service: ai · operationId: (none)
Required scopes
(no scope declared — review service config)
Path parameters
id(string) required —
Request body
{
"type": "object",
"properties": {
"title": {
"type": "string",
"minLength": 1,
"maxLength": 120
}
},
"required": [
"title"
]
}Responses
200 Conversation updated
{
"type": "object",
"properties": {
"id": {
"type": "string",
"format": "uuid"
},
"user_id": {
"type": "string",
"format": "uuid"
},
"brand_id": {
"type": "string"
},
"started_at": {
"type": "string"
},
"last_active_at": {
"type": "string"
},
"model": {
"type": "string"
},
"title": {
"type": [
"string",
"null"
]
},
"context": {
"type": "object",
"additionalProperties": {}
}
},
"required": [
"id",
"user_id",
"brand_id",
"started_at",
"last_active_at",
"model",
"title",
"context"
]
}404 Conversation not found
{
"type": "object",
"properties": {
"error": {
"type": "string"
},
"message": {
"type": "string"
}
},
"required": [
"error",
"message"
]
}500 Server error
{
"type": "object",
"properties": {
"error": {
"type": "string"
},
"message": {
"type": "string"
}
},
"required": [
"error",
"message"
]
}Example
curl -X PATCH https://ai.platform.loop.health/v1/conversations/{id} \
-H "Authorization: Bearer $ACCESS_TOKEN" \
-H "Content-Type: application/json" \
-d '{ ... }'Related
services/ai— service overview- All endpoints — directory across services
- Auth model — how scopes are enforced