You can get the list of your key/values with the following call :
curl --request GET \
--url 'https://{your-instance-name}.quable.com/keyvalues?page=1&limit=100' \
--header 'accept: application/hal+json'
You can add a key/values with the following call :
curl --request POST \
--url https://{your-instance-name}.quable.com/keyvalues/{your-key} \
--header 'accept: application/hal+json' \
--header 'content-type: application/ld+json' \
--data '
{
"isProtected": false,
"isPublic": false,
"id": "test",
"value": "your-value"
}
'