Context Memory
Create a new user Context Memory Item (+ optional tenant union OR tenant id/label). Prefer tenant_union_id for union-scoped context (multiple integration slots); tenant_id+tenant_label for upstream tenant scoping.
Hello worldnullnullnullContext Memory Item created
Bad request - invalid input
Unauthorized
Access denied
System error
System not ready for requests
POST /app/api/v1/context-memory/create HTTP/1.1
Host:
Authorization: YOUR_API_KEY
Content-Type: application/json
Accept: */*
Content-Length: 86
{
"content": "Hello world",
"tenant_id": "text",
"tenant_label": "text",
"tenant_union_id": 1
}{
"item_id": 1
}Delete an existing user Context Memory Item
Context Memory Item deleted
Unauthorized
Access denied
Resource not found
System error
System not ready for requests
DELETE /app/api/v1/context-memory/delete/{item_id} HTTP/1.1
Host:
Authorization: YOUR_API_KEY
Accept: */*
{
"item_id": 1
}Update an existing user Context Memory Item (+ optional tenant union OR tenant id/label). Prefer tenant_union_id for union-scoped context (multiple integration slots); tenant_id+tenant_label for upstream tenant scoping.
Hello worldnullnullnullContext Memory Item updated
Bad request - invalid input
Unauthorized
Access denied
Resource not found
System error
System not ready for requests
PUT /app/api/v1/context-memory/update/{item_id} HTTP/1.1
Host:
Authorization: YOUR_API_KEY
Content-Type: application/json
Accept: */*
Content-Length: 86
{
"content": "Hello world",
"tenant_id": "text",
"tenant_label": "text",
"tenant_union_id": 1
}{
"item_id": 1
}Last updated
Was this helpful?