Memory
Store Memory
Header parameters
correlation-idstringRequired
Body
collection_namestringRequired
dataobject · DataRequired
Responses
200
Successful Response
application/json
422
Validation Error
application/json
post
/memoryPOST /memory HTTP/1.1
Host:
correlation-id: text
Content-Type: application/json
Accept: */*
Content-Length: 36
{
"collection_name": "text",
"data": {}
}{
"message": "text"
}Retrieve Memory
Query parameters
collection_namestringRequired
querystringRequired
top_kany ofOptionalDefault:
5integerOptional
nullOptional
Header parameters
correlation-idstringRequired
Responses
200
Successful Response
application/json
422
Validation Error
application/json
get
/memoryGET /memory?collection_name=text&query=text HTTP/1.1
Host:
correlation-id: text
Accept: */*
{
"results": [
{}
]
}Update Memory
Header parameters
correlation-idstringRequired
Body
collection_namestringRequired
dataobject · DataRequired
Responses
200
Successful Response
application/json
422
Validation Error
application/json
patch
/memoryPATCH /memory HTTP/1.1
Host:
correlation-id: text
Content-Type: application/json
Accept: */*
Content-Length: 36
{
"collection_name": "text",
"data": {}
}{
"message": "text"
}Delete Memory
Header parameters
correlation-idstringRequired
Body
collection_namestringRequired
match_criteriaobject · MatchCriteriaRequired
Responses
200
Successful Response
application/json
422
Validation Error
application/json
delete
/memoryDELETE /memory HTTP/1.1
Host:
correlation-id: text
Content-Type: application/json
Accept: */*
Content-Length: 46
{
"collection_name": "text",
"match_criteria": {}
}{
"message": "text"
}List Collections
Get Collection Info
Last updated
Was this helpful?