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

Description

Updates the tip settings with a parameter specified in the request.

Parameters
Name Description Type Example
DefaultProductID
sent in body
Default product ID guid 9924256A-739C-462b-AF15-E652A3B1B6EB
Lng
sent in body
Language string some text
TimeZoneID
sent in body
Time zone ID string some text
Theme
sent in body
Theme string some text
Show
sent in body
Specifies whether to show tips for the user or not Bool value true
VersionId
sent in body
Version ID number 1234
OwnerId
sent in body
Owner ID guid 9924256A-739C-462b-AF15-E652A3B1B6EB
Example
PUT api/2.0/settings/tips
Host: yourportal.onlyoffice.com
Content-Type: application/json
Accept: application/json

{
  "DefaultProductID": "9924256A-739C-462b-AF15-E652A3B1B6EB",
  "Lng": "some text",
  "TimeZoneID": "some text",
  "Theme": "some text",
  "Show": true,
  "VersionId": 1234,
  "OwnerId": "9924256A-739C-462b-AF15-E652A3B1B6EB"
}
Returns

Updated tip settings

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