Skip to main content
POST
/
api
/
v1
/
runtime
/
v1
/
memory
/
{memoryId}
/
append
Append Memory
curl --request POST \
  --url https://api.runflow.ai/api/v1/runtime/v1/memory/{memoryId}/append \
  --header 'Content-Type: application/json' \
  --data '
{
  "content": "<string>",
  "metadata": {}
}
'

Documentation Index

Fetch the complete documentation index at: https://docs.runflow.ai/llms.txt

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

Path Parameters

memoryId
string
required

Memory identifier (entityType:entityValue or sessionId)

Body

application/json
role
enum<string>
required

Message role

Available options:
user,
assistant,
system
content
string
required

Message content

metadata
object

Message metadata

Response

Message appended. Body is empty on success.