Permission required:
project:modifyPath Parameters
string
required
Workspace identifier
string
required
Project identifier
Request Body
string
Updated project name
string
Updated project description
Response
object
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
curl -X PATCH 'https://app.memorylake.ai/openapi/memorylake/api/v3/workspaces/ws_abc123/projects/proj_def456' \
-H 'Authorization: Bearer sk_xxxxxx' \
-H 'Content-Type: application/json' \
-d '{
"name": "Customer Research (Updated)",
"description": "Expanded to include focus-group recordings"
}'
{
"success": true,
"data": {
"id": "proj_def456",
"name": "Customer Research (Updated)",
"description": "Expanded to include focus-group recordings",
"custom_id": "research-2024-q1",
"created_at": "2024-01-15T10:30:00Z",
"updated_at": "2024-03-05T16:20:00Z"
}
}
Update an existing project’s name or description
PATCH /openapi/memorylake/api/v3/workspaces/{workspaceId}/projects/{projectId}
project:modifycurl -X PATCH 'https://app.memorylake.ai/openapi/memorylake/api/v3/workspaces/ws_abc123/projects/proj_def456' \
-H 'Authorization: Bearer sk_xxxxxx' \
-H 'Content-Type: application/json' \
-d '{
"name": "Customer Research (Updated)",
"description": "Expanded to include focus-group recordings"
}'
{
"success": true,
"data": {
"id": "proj_def456",
"name": "Customer Research (Updated)",
"description": "Expanded to include focus-group recordings",
"custom_id": "research-2024-q1",
"created_at": "2024-01-15T10:30:00Z",
"updated_at": "2024-03-05T16:20:00Z"
}
}