storage
Credits: 0.000001
Create a new list
itemsarray
list items
namestring
list name
listobject
The created list
Request
Response
{
"list": {
"id": "63c0cdf8-2121-11ec-a881-0242e36f037a",
"created": "2021-09-29T13:33:03+01:00",
"updated": "2021-09-29T13:33:03+01:00",
"title": "New List",
"text": "This is my list"
}
}
Credits: 0.000001
Delete a list
idstring
specify the id of the list
listobject
Request
Response
{
"list": {
"id": "63c0cdf8-2121-11ec-a881-0242e36f037a",
"created": "2021-09-29T13:33:03+01:00",
"updated": "2021-09-29T13:50:20+01:00",
"title": "Update List",
"text": "Updated list text"
}
}
Credits: 0.000001
Subscribe to lists events
idstring
optionally specify a list id
eventstring
the event which occured; create, delete, update
listobject
the list which the operation occured on
Request
Response
{
"event": "deleted",
"list": {
"id": "63c0cdf8-2121-11ec-a881-0242e36f037a",
"created": "2021-09-29T13:33:03+01:00",
"updated": "2021-09-29T13:50:20+01:00",
"title": "Update List",
"text": "Updated list text"
}
}
Credits: 0.000001
List all the lists
listsarray
the list of lists
Request
Response
{
"lists": [
{
"id": "63c0cdf8-2121-11ec-a881-0242e36f037a",
"created": "2021-09-29T13:33:03+01:00",
"updated": "2021-09-29T13:33:03+01:00",
"title": "New List",
"text": "This is my list"
}
]
}
Credits: 0.000001
Read a list
idstring
the list id
listobject
The list
Request
Response
{
"list": {
"id": "63c0cdf8-2121-11ec-a881-0242e36f037a",
"created": "2021-09-29T13:33:03+01:00",
"updated": "2021-09-29T13:33:03+01:00",
"title": "New List",
"text": "This is my list"
}
}
Credits: 0.000001
Update a list
listobject
listobject
Request
Response
{
"list": {
"id": "63c0cdf8-2121-11ec-a881-0242e36f037a",
"created": "2021-09-29T13:33:03+01:00",
"updated": "2021-09-29T13:50:20+01:00",
"title": "Update List",
"text": "Updated list text"
}
}