DELETE
/
memories
Delete Session Data
curl --request DELETE \
  --url http://localhost:8080/v1/memories \
  --header 'Content-Type: application/json' \
  --data '{
  "session": {
    "group_id": "<string>",
    "agent_id": [
      "<string>"
    ],
    "user_id": [
      "<string>"
    ],
    "session_id": "<string>"
  }
}'

Body

application/json

Data model for deleting all data associated with a session.

session
object
required

The session context whose data should be deleted.

Response

Session data successfully deleted.