Get Started
API backend
API system
More information

GET api/2.0/settings/ldap/status This function requires authentication

Description

Returns the LDAP synchronization process status.

Parameters

This method doesn't have any parameters.

Example
GET api/2.0/settings/ldap/status
Host: yourportal.onlyoffice.com
Content-Type: application/json
Accept: application/json
Returns

LDAP operation status

Example Response

application/json

{
  "status": 0,
  "response": {
    "Completed": true,
    "Id": "some text",
    "Status": "some text",
    "Error": "some text",
    "Warning": "some text",
    "Percents": 1234,
    "CertificateConfirmRequest": "some text",
    "Source": "some text",
    "OperationType": "some text"
  }
}

text/xml

<result>
  <status>0</status>
  <response>
    <Completed>True</Completed>
    <Id>some text</Id>
    <Status>some text</Status>
    <Error>some text</Error>
    <Warning>some text</Warning>
    <Percents>1234</Percents>
    <CertificateConfirmRequest>some text</CertificateConfirmRequest>
    <Source>some text</Source>
    <OperationType>some text</OperationType>
  </response>
</result>