PUT api/2.0/settings/emailactivation This function requires authentication

Description

Updates the email activation settings.

Parameters
Name Description Type Example
show
sent in body
Specifies whether to show the email activation panel to the user or not Bool value true
Example
PUT api/2.0/settings/emailactivation
Host: yourportal.onlyoffice.com
Content-Type: application/json
Accept: application/json

{
  "show": true
}
Returns

Updated email activation settings

Example Response

application/json

{
  "status": 0,
  "response": {
    "Show": true
  }
}

text/xml

<result>
  <status>0</status>
  <response>
    <Show>True</Show>
  </response>
</result>