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
}
Update the name of an existing 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
}
{
"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
}
Was this page helpful?