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 System.String
PasswordHash
sent in body
Password hash System.String
Lng
sent in body
Language System.String
TimeZone
sent in body
Time zone System.String
AmiId
sent in body
AMI ID System.String
SubscribeFromSite
sent in body
Subscribed from the site or not System.Boolean
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
  }
}