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

Description

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

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

Connected providers

Example Response

application/json

{
  "status": 0,
  "response": [
    {
      "auth_data": {
        "login": "login",
        "password": "password",
        "token": "token",
        "url": "url"
      },
      "corporate": false,
      "customer_title": "customer_title",
      "provider_id": "provider_id",
      "provider_key": "provider_key"
    }
  ]
}

text/xml

<result>
  <status>0</status>
  <response>
    <auth_data>
      <login>login</login>
      <password>password</password>
      <token>token</token>
      <url>url</url>
    </auth_data>
    <corporate>False</corporate>
    <customer_title>customer_title</customer_title>
    <provider_id>provider_id</provider_id>
    <provider_key>provider_key</provider_key>
  </response>
</result>