Skip to main content
PATCH
/
api
/
nucleus
/
memories
Update an existing Nucleus memory
curl --request PATCH \
  --url https://app.auditynow.com/api/nucleus/memories \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "memoryId": "550e8400-e29b-41d4-a716-446655440000",
  "content": "Initech CTO confirmed: SOC2 deferred to Q3 2026. HIPAA + PCI compliance is the 2026 roadmap focus."
}
'
{
  "success": true
}

Documentation Index

Fetch the complete documentation index at: https://docs.auditynow.com/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

A Personal Access Token issued from https://app.auditynow.com/dashboard/settings/api-tokens. Format: aky_<32 random chars>.

Body

application/json

PATCH payload for updating a memory's subject or content. The target memory ID is passed in the JSON body as memoryId, not the URL path.

memoryId
string<uuid>
required
subject
string

New subject. Trimmed before save. At least one of subject or content must be present.

Required string length: 1 - 200
content
string

New content. Trimmed before save.

Required string length: 1 - 2000

Response

Memory updated

success
boolean
required