cURL
curl --request PUT \ --url https://api.example.com/memories/{id} \ --header 'Content-Type: application/json' \ --data ' { "content": "<string>", "tags": [ "<string>" ], "importance": 123, "source_context": {} } '
{ "id": 123, "content": "<string>", "source": "<string>", "source_context": {}, "tags": [ "<string>" ], "importance": 123, "frame_id": 123, "created_at": "<string>", "updated_at": "<string>" }
OK
Was this page helpful?