Skip to main content

Set a Value

POST 

https://api.anedya.io/v1/valuestore/setValue

Creates a value in the value store if does not exist, updates if exist.

note

You can store maximum of 512kB of data in a value

Request

Responses

OK

curl -L 'https://api.anedya.io/v1/valuestore/setValue' \
-H 'Content-Type: application/json' \
-H 'Accept: application/json' \
-d '{
"namespace": {
"scope": "global",
"id": "string"
},
"key": "string",
"value": "string",
"type": "string"
}'
Request Collapse all
Base URL
https://api.anedya.io/v1
Body
{
  "namespace": {
    "scope": "global",
    "id": "string"
  },
  "key": "string",
  "value": "string",
  "type": "string"
}
ResponseClear

Click the Send API Request button above and see the response here!