Вопросы и ответы по интеграции сервера BOOCO с другими ИТ-системами

<aside> ❗ Для версий BOOCO Astra (v 2.x) и BOOCO Meteor (v 1.x)

</aside>

Исходные требования

Проверка доступа к календарю

В Postman:

  1. Введите адрес Exchange-сервера и выберите метод POST.

  2. На вкладке Authorization выберите Basic Auth и введите логин и пароль.

    Postman_Authorization.png

  3. На вкладке Headers укажите:

  4. На вкладке Body:

  5. Выполните запрос.

    Пример ответа:

    <?xml version="1.0" encoding="utf-8" ?>
    <s:Envelope xmlns:s="<http://schemas.xmlsoap.org/soap/envelope/>">
      <s:Header>
        <h:ServerVersionInfo
          MajorVersion="15"
          MinorVersion="2"
          MajorBuildNumber="1544"
          MinorBuildNumber="11"
          Version="V2017_07_11"
          xmlns:h="<http://schemas.microsoft.com/exchange/services/2006/types>"
          xmlns="<http://schemas.microsoft.com/exchange/services/2006/types>"
          xmlns:xsd="<http://www.w3.org/2001/XMLSchema>"
          xmlns:xsi="<http://www.w3.org/2001/XMLSchema-instance>"
        />
      </s:Header>
      <s:Body
        xmlns:xsi="<http://www.w3.org/2001/XMLSchema-instance>"
        xmlns:xsd="<http://www.w3.org/2001/XMLSchema>"
      >
        <m:FindItemResponse
          xmlns:m="<http://schemas.microsoft.com/exchange/services/2006/messages>"
          xmlns:t="<http://schemas.microsoft.com/exchange/services/2006/types>"
        >
          <m:ResponseMessages>
            <m:FindItemResponseMessage ResponseClass="Success">
              <m:ResponseCode>NoError</m:ResponseCode>
              <m:RootFolder TotalItemsInView="0" IncludesLastItemInRange="true">
                <t:Items />
              </m:RootFolder>
            </m:FindItemResponseMessage>
          </m:ResponseMessages>
        </m:FindItemResponse>
      </s:Body>
    </s:Envelope>