GET api/2.0/settings/customschemas
Returns all portal team templates that allow users to name their organization (or group), add members, and define their activities within the portal.
This method doesn't have any parameters.
GET api/2.0/settings/customschemas
Host: yourportal.onlyoffice.com
Content-Type: application/json
Accept: application/json
List of team templates with the following parameters
application/json
{
"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"
}
]
}
text/xml
<result>
<status>0</status>
<response>
<Id>some text</Id>
<Name>some text</Name>
<UserCaption>some text</UserCaption>
<UsersCaption>some text</UsersCaption>
<GroupCaption>some text</GroupCaption>
<GroupsCaption>some text</GroupsCaption>
<UserPostCaption>some text</UserPostCaption>
<RegDateCaption>some text</RegDateCaption>
<GroupHeadCaption>some text</GroupHeadCaption>
<GuestCaption>some text</GuestCaption>
<GuestsCaption>some text</GuestsCaption>
</response>
</result>