Skip to main content
POST
/
v1
/
memories
/
profile
Add Profile Memory Message
curl --request POST \
  --url http://localhost:8080/v1/memories/profile \
  --header 'Content-Type: application/json' \
  --data '{
  "user_id": "",
  "content": "",
  "metadata": {},
  "isolations": {}
}'
{
  "status": "success"
}

Body

application/json

Request body for adding a message to the profile memory system.

user_id
string
default:""
required

The ID of the user associated with the message.

content
string
default:""
required

The message content.

metadata
object | null

Optional dictionary for message metadata.

isolations
object | null

Optional dictionary for data isolation filtering.

Response

200 - application/json

Message accepted for profile ingestion.

Generic response indicating the status of an asynchronous operation.

status
string
required

The status of the operation (e.g., 'success', 'accepted', 'failure').

Example:

"success"