Skip to main content
POST
https://api.memcontext.in
/
api
/
memories
/
{id}
/
feedback
Submit feedback for a memory
curl --request POST \
  --url https://api.memcontext.in/api/memories/{id}/feedback \
  --header 'Content-Type: application/json' \
  --header 'X-API-Key: <api-key>' \
  --data '
{
  "type": "helpful"
}
'
{
  "success": true
}

Authorizations

X-API-Key
string
header
required

API key created from the MemContext dashboard. Keys are prefixed with mc_.

Path Parameters

id
string<uuid>
required

Memory UUID.

Body

application/json
type
enum<string>
required
  • helpful - The memory was useful in the current context.
  • not_helpful - The memory was irrelevant.
  • outdated - The memory contains stale information.
  • wrong - The memory contains incorrect information.
Available options:
helpful,
not_helpful,
outdated,
wrong
context
string

Optional explanation of why this feedback is being submitted.

Maximum string length: 1000

Response

Feedback recorded.

success
boolean
required