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

Description

Creates a custom team template with the parameters specified in the request.

Parameters
Name Description Type Example
Id
sent in body
Team template ID string some text
Name
sent in body
Team template name string some text
UserCaption
sent in body
User caption string some text
UsersCaption
sent in body
Users caption string some text
GroupCaption
sent in body
Group caption string some text
GroupsCaption
sent in body
Groups caption string some text
UserPostCaption
sent in body
User status caption string some text
RegDateCaption
sent in body
Registration date caption string some text
GroupHeadCaption
sent in body
Group lead caption string some text
GuestCaption
sent in body
Guest caption string some text
GuestsCaption
sent in body
Guests caption string some text
Example
PUT api/2.0/settings/customschemas
Host: yourportal.onlyoffice.com
Content-Type: application/json
Accept: application/json

{
  "Id": "some text",
  "Name": "some text",
  "UserCaption": "some text",
  "UsersCaption": "some text",
  "GroupCaption": "some text",
  "GroupsCaption": "some text",
  "UserPostCaption": "some text",
  "RegDateCaption": "some text",
  "GroupHeadCaption": "some text",
  "GuestCaption": "some text",
  "GuestsCaption": "some text"
}
Returns

Custom team template with the following parameters

Example Response
{
  "status": 0,
  "response": {
    "Id": "some text",
    "Name": "some text",
    "UserCaption": "some text",
    "UsersCaption": "some text",
    "GroupCaption": "some text",
    "GroupsCaption": "some text",
    "UserPostCaption": "some text",
    "RegDateCaption": "some text",
    "GroupHeadCaption": "some text",
    "GuestCaption": "some text",
    "GuestsCaption": "some text"
  }
}