curl --request POST \
--url https://api.bland.ai/v1/memory/reset \
--header 'Content-Type: application/json' \
--header 'authorization: <authorization>' \
--data '
{
"contact_id": "<string>",
"persona_id": "<string>",
"agent_number": "<string>"
}
'{
"data": {
"success": true
},
"errors": null
}
Permanently delete all memory for a contact scoped to a specific persona or agent number. All conversation history, facts, summaries, and entities for that pair are removed. This cannot be undone.
curl --request POST \
--url https://api.bland.ai/v1/memory/reset \
--header 'Content-Type: application/json' \
--header 'authorization: <authorization>' \
--data '
{
"contact_id": "<string>",
"persona_id": "<string>",
"agent_number": "<string>"
}
'{
"data": {
"success": true
},
"errors": null
}
persona_id or agent_number is required.persona_id or agent_number is required.{
"data": {
"success": true
},
"errors": null
}
Was this page helpful?