Skip to main content
GET
/
v1
/
memories
/
{id}
/
mutations
Get mutation history
curl --request GET \
  --url http://localhost:8080/v1/memories/{id}/mutations \
  --header 'Authorization: Bearer <token>'
{
  "mutations": [
    {
      "timestamp": "2023-11-07T05:31:56Z",
      "source": "<string>",
      "old_confidence": 123,
      "new_confidence": 123,
      "reason": "<string>"
    }
  ]
}

Authorizations

Authorization
string
header
required

API key with mk_ or rk_ prefix

Path Parameters

id
string<uuid>
required

Response

200 - application/json

Mutation log

mutations
object[]