PUT
/
admin
/
settings
Update settings
curl --request PUT \
  --url https://api.fluxend.app/admin/settings \
  --header 'Authorization: <authorization>' \
  --header 'Content-Type: application/json' \
  --data '{
  "settings": [
    {
      "name": "<string>",
      "value": "<string>"
    }
  ]
}'
{
  "content": [
    {
      "createdAt": "<string>",
      "defaultValue": "<string>",
      "id": 123,
      "name": "<string>",
      "updatedAt": "<string>",
      "value": "<string>"
    }
  ],
  "errors": [
    "<string>"
  ],
  "metadata": "<any>",
  "success": true
}

Headers

Authorization
string
required

Bearer Token

Body

application/json

Settings update request

The body is of type object.

Response

200
application/json

Form updated

The response is of type object.