Skip to Content

TwentyThree™ API

API Method: /api/setting/update

Update one or more account settings.

Parameters

Send each updateable setting with its new value as key/value in the request.

Permission level

The minimum required permission level is:

write

Example XML Response

<response status="ok" permission_level="super" message="All properties updated" cached="0">
  <updated>enable_subtitles_p,country_iso,company_name</updated>
  <update_count>3</update_count>
</response>

Example JSON Response

{
  "status": "ok", 
  "message":"All properties updated",
  "permission_level":"super",
  "cached":"0",
  "settings":{
    "updated": "enable_subtitles_p,country_iso,company_name", 
    "update_count": "3"
  },
  "site": {...},
  "endpoint": "/api/setting/update"
}