GET api/2.0/people/thirdparty/providers

Description

Returns a list of the available third-party accounts.

Parameters
Name Description Type Example
inviteView
sent in url
Specifies whether to return providers that are available for invitation links, i.e. the user can login or register through these providers Bool value true
settingsView
sent in url
Specifies whether to return URLs in the format that is used on the Settings page Bool value true
clientCallback
sent in url
Method that is called after authorization string some text
fromOnly
sent in url
Provider name if the response only from this provider is needed string some text
Example
GET api/2.0/people/thirdparty/providers
Host: yourportal.onlyoffice.com
Content-Type: application/json
Accept: application/json

{
  "inviteView": true,
  "settingsView": true,
  "clientCallback": "some text",
  "fromOnly": "some text"
}
Returns

List of third-party accounts

Example Response
{
  "status": 0,
  "response": [
    {
      "Provider": "some text",
      "Url": "some text",
      "Linked": true,
      "Class": "some text"
    }
  ]
}