POST
/
v1
/
memory
/
{memory_id}
/
update
Update Memory
curl --request POST \
  --url https://api.bland.ai/v1/memory/{memory_id}/update \
  --header 'Content-Type: application/json' \
  --header 'authorization: <authorization>' \
  --data '{
  "name": "<string>"
}'
{
  "data": {
    "id": "12345678-1234-1234-1234-123456789012",
    "created_at": "2025-07-21T07:24:49.883Z",
    "user_id": "87654321-4321-4321-4321-210987654321",
    "name": "Test Memory",
    "memory_duration": null
  },
  "errors": null
}

Headers

authorization
string
required
Your API key for authentication.

Path Parameters

memory_id
string
required
The unique identifier of the memory to update.

Body Parameters

name
string
required
The new name for the memory. Cannot be null or undefined.

Response

data
object
The updated memory object.
data.id
string
Unique identifier for the memory.
data.name
string
Updated name of the memory.
data.created_at
string
ISO timestamp when the memory was originally created.
data.user_id
string
Unique identifier for the organization that owns the memory.
data.memory_duration
number
Currently under development.
errors
null
Error array (null on success).
{
  "data": {
    "id": "12345678-1234-1234-1234-123456789012",
    "created_at": "2025-07-21T07:24:49.883Z",
    "user_id": "87654321-4321-4321-4321-210987654321",
    "name": "Test Memory",
    "memory_duration": null
  },
  "errors": null
}