Get Memories

End point: [RemoteTM URL]/memories
Send a GET request with these headers:
Header Value
Session  The ticket received from Authorization Request
Content-Type application/json
RemoteTM responds with a JSON object.
On success, field 'status' is set to 'OK' and a list of memories in JSON format is included in field 'memories'. Example:
{
    "memories":[{
        "owner":"sysadmin",
        "subject":"Somethin' new",
        "name":"First memory",
        "project":"project One",
        "client":"Greenland",
        "id":"1617017020862",
        "creationDate":"2021-03-29 08:23",
        "open":false
    },{
        "owner":"sysadmin",
        "subject":"Terminology data",
        "name":"Terminology",
        "project":"",
        "client":"",
        "id":"1617053861912",
        "creationDate":"2021-03-29 18:37",
        "open":false
    }],
    "status":"OK"
}
On error, field 'status' is set to 'Error' and field 'reason' contains the error cause. Example:
{
    "status": "Error",
    "reason": "Access denied"
}