PUT api/2.0/settings/wizard/complete This function requires authentication

Description

Completes the Wizard settings.

Parameters
Name Description Type Example
Email
sent in body
Email string some text
PasswordHash
sent in body
Password hash string some text
Lng
sent in body
Language string some text
TimeZone
sent in body
Time zone string some text
AmiId
sent in body
AMI ID string some text
SubscribeFromSite
sent in body
Subscribed from the site or not Bool value true
Example
PUT api/2.0/settings/wizard/complete
Host: yourportal.onlyoffice.com
Content-Type: application/json
Accept: application/json

{
  "Email": "some text",
  "PasswordHash": "some text",
  "Lng": "some text",
  "TimeZone": "some text",
  "AmiId": "some text",
  "SubscribeFromSite": true
}
Returns

Wizard settings

Example Response
{
  "status": 0,
  "response": {
    "Completed": true
  }
}