IMPORTANT: No additional bug fixes or documentation updates
will be released for this version. For the latest information, see the
current release documentation.
Log settings API
editLog settings API
editAPI reference for log settings.
Read log settings
editGet log settings.
GET /api/as/v1/log_settings
# 200 OK { "api": { "enabled": true }, "analytics": { "enabled": true } }
Update log settings
editPut or patch log settings to set custom values.
PUT /api/as/v1/log_settings { "api": { "enabled": <value> }, "analytics": { "enabled": <value> } }
or
PATCH /api/as/v1/log_settings { "api": { "enabled": <value> }, "analytics": { "enabled": <value> } }
Example: Disable API logging
PUT /api/as/v1/log_settings { "api": { "enabled": false } }
# 200 OK { "api": { "enabled": false }, "analytics": { "enabled": true } }
Remove log settings
editDelete all log settings, restoring default behavior.
DELETE /api/as/v1/log_settings
# 200 OK { "api": { "enabled": true }, "analytics": { "enabled": true } }