Save admin settings
POST /admin/settings
Validates the supplied RingCentral administrator token and replaces account-level App Connect settings for that RingCentral account. The nested settings and optional custom-connector data come from the request body; this write path does not require a userJwt.
Operation ID: postAdminSettings
Authorization: API key or API key
Request body
Account-level App Connect settings. Nested setting definitions are extensible.
Required: Yes
Content type: application/json
Schema: AdminSettingsUpdateRequest
{
"adminSettings": {
"userSettings": {
"autoLogCalls": true,
"autoLogMessages": false
}
}
}
Responses
| Status | Description | Body |
|---|---|---|
200 |
The account settings were updated. | AdminSuccessMessage |
400 |
Bad request, missing authentication, or connector error. | ErrorResponse, string |
403 |
The caller is authenticated but is not permitted to perform the operation. | ErrorResponse, string |