List Memories

End Point: [TMEngine URL]/list
Default: http://localhost:8000/TMServer/list
Send a 'GET' request to the method end point.
The server responds with a JSON object containing two fields. On success, field 'status' is set to 'OK' and field 'memories' contains an array with memory details.
{
  "memories": [
     {
       "owner": "manager",
       "isOpen": false,
       "name": "Fluenta Localization",
       "id": "fluenta",
       "type": "MapDbEngine",
       "creationDate": "2019-09-10 21:54:13 UYT"
     }, 
     {
       "owner": "manager",
       "isOpen": false,
       "name": "First Memory",
       "id": "1568163112478",
       "type": "MapDbEngine",
       "creationDate": "2019-09-10 21:51:52 UYT"
     }
  ],
  "status": "OK"
}
On error, field 'status' is set to 'failed' and field 'reason' contains the error cause.
Example:
{
  "status": "failed",            
  "reason": "Error reading memories"        
}