EasyDB
Last updated
Was this helpful?
Last updated
Was this helpful?
The EasyDB
node allow to create, read, list and delete keys on an Easy DB database.
CASE: Put
Key: Receives a String
with the key to update. Learn more on .
Data: Receives an `Object
, String
, Number
or Boolean
with the data to save in the key. Learn more on .
CASE: Get
Key: Receives a String
with the key to retrieve. Learn more on .
CASE: Delete
Key: Receives a String
with the key to delete. Learn more on .
CASE: List
The list commands requires no parameters. Learn more on .
Environment variables:
easydb: Requires Database and Token to be set.
CASE: Put
CASE: Get
CASE: Delete
CASE: List
Retrieve a value from the database.
Request (Get) ➡ EasyDB (Get) ➡ Response (200)
Update a value on the database.
Request (Post) ➡ EasyDB (Put) ➡ Response (200)
This operation returns no data. Learn more on .
Out: Returns an Object
, String
, Number
or Boolean
with the retrieved data. Learn more on .
This operation returns no data. Learn more on .
Out: Returns an array of Object
, String
, Number
or Boolean
with the all database keys. Learn more on .