Get Started
API backend
API system
More information

GET api/2.0/files/thirdparty This function requires authentication

Description

Returns a list of all the connected third-party accounts.

Parameters

This method doesn't have any parameters.

Example
GET api/2.0/files/thirdparty
Host: yourportal.onlyoffice.com
Content-Type: application/json
Accept: application/json
Returns

List of connected providers information

Example Response

application/json

{
  "status": 0,
  "response": [
    {
      "Corporate": true,
      "RoomsStorage": true,
      "CustomerTitle": "some text",
      "ProviderId": "some text",
      "ProviderKey": "some text"
    }
  ]
}

text/xml

<result>
  <status>0</status>
  <response>
    <Corporate>True</Corporate>
    <RoomsStorage>True</RoomsStorage>
    <CustomerTitle>some text</CustomerTitle>
    <ProviderId>some text</ProviderId>
    <ProviderKey>some text</ProviderKey>
  </response>
</result>