Get your data from database, with namespace or query for filtering results.
Name | Type | Description |
---|---|---|
namespace (Optional) | string | specified namespace to create unique data |
uuid (Optional) | string | if you want to retrieve data with specific uuid |
Store your data into database, with namespace (optional).
Name | Type | Description |
---|---|---|
namespace | string | specified namespace to create unique data |
{
"you_own_data": "you_own_value",
"you_own_data2": "you_own_value2",
"you_own_data3": "you_own_value3"
}
Also you can simulate updating data by sending a PUT request to this endpoint. {uuid} is required for spesific data to be updated.
Name | Type | Description |
---|---|---|
namespace | string | specified namespace to create unique data |
uuid * | string | fill in the uuid that will be updated |
{
"you_own_data": "you_own_value_updated",
"you_own_data2": "you_own_value_updated2",
"you_own_data3": "you_own_value_updated3"
}
with this endpoint you can delete data. {uuid} is required for spesific data to be deleted.
Name | Type | Description |
---|---|---|
namespace | string | specified namespace to create unique data |
uuid * | string | fill with uuid to be deleted |