Skip to content
Marcello Federico edited this page Feb 16, 2018 · 3 revisions

Quick example

curl -X POST http://localhost:8045/memories -d "name=NewMemory" | python -mjson.tool

{
    "data": {
        "id": 4,
        "name": "NewMemory"
    },
    "status": 200
}

Description

This method creates a new and empty memory.

Resource URL

http://localhost:8045/memories

Parameters

name The memory name.

Example: NewMemory

Response Fields

id The id of the memory just created.
name The name of the memory.