Skip to main content
POST
/
v3
/
settings
Add Setting
curl --request POST \
  --url http://localhost/api/v3/settings \
  --header 'Content-Type: application/json' \
  --data '
{
  "handle": "<string>",
  "value": "<string>",
  "type": "string"
}
'
{
  "data": {
    "id": 123,
    "handle": "<string>",
    "value": "<string>",
    "type": "<string>",
    "created_at": "<string>",
    "updated_at": "<string>"
  }
}

Documentation Index

Fetch the complete documentation index at: https://docs.omneo.io/llms.txt

Use this file to discover all available pages before exploring further.

Body

application/json
handle
string
required
value
string
required
type
enum<string>
required
Available options:
string,
boolean,
integer,
float,
json

Response

Setting

data
Setting · object
required