Skip to main content
PUT /openapi/memorylake/api/v1/projects/{id}
Updates an existing project’s name and/or description.

Path Parameters

id
string
required
Project ID

Request Body

name
string
Updated project name (1–255 characters)
description
string
Updated project description (max 2000 characters)
curl -X PUT 'https://app.memorylake.ai/openapi/memorylake/api/v1/projects/proj-a1b2c3d4e5f6g7h8i9j0k1l2m3n4o5p6' \
  -H 'Authorization: Bearer sk_xxxxxx' \
  -H 'Content-Type: application/json' \
  -d '{
    "name": "My Updated Project",
    "description": "Updated project description"
  }'

Response

data
object
{
  "success": true,
  "message": "Project updated successfully",
  "data": {
    "id": "proj-a1b2c3d4e5f6g7h8i9j0k1l2m3n4o5p6",
    "name": "My Updated Project",
    "description": "Updated project description",
    "created_at": "2024-01-15T10:30:00Z",
    "updated_at": "2024-01-20T14:45:00Z"
  }
}