Skip to main content
PUT
/
v3
/
settings
/
{setting}
Edit a setting
curl --request PUT \
  --url http://localhost/api/v3/settings/{setting} \
  --header 'Content-Type: application/json' \
  --data '
{
  "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.

Path Parameters

setting
string
required

The setting handle

Body

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

Response

Setting

data
Setting · object
required