Различия

Показаны различия между двумя версиями страницы.

Ссылка на это сравнение

Следующая версия
Предыдущая версия
product:api:list:deletelinkuserwith_oid [30.07.2024 05:46] – создано ekaterina.menkhuzinaproduct:api:list:deletelinkuserwith_oid [09.09.2024 06:03] (текущий) – [Передаваемые параметры] ekaterina.menkhuzina
Строка 1: Строка 1:
 ====== Удаление связи с Open ID ====== ====== Удаление связи с Open ID ======
 +Метод: **DeleteLinksWithOpenIdConnect**
 +
 +===== Передаваемые параметры =====
 +^ Параметр ^ Описание ^
 +|ASPNETSessionId|Идентификатор сессии пользователя Системы|
 +|personId|Идентификатор пользователя|
 +|List<string> authenticationTypes|Массив идентификаторов провайдеров авторизации|
 +
 +<code xml>
 +<?xml version="1.0" encoding="utf-8"?>
 +<soap:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
 +  <soap:Body>
 +    <DeleteLinksWithOpenIdConnect xmlns="http://streamline/">
 +      <ASPNETSessionId>string</ASPNETSessionId>
 +      <personId>guid</personId>
 +      <authenticationTypes>
 +        <string>string</string>
 +        <string>string</string>
 +      </authenticationTypes>
 +    </DeleteLinksWithOpenIdConnect>
 +  </soap:Body>
 +</soap:Envelope>
 +</code>
 +
 +===== Возвращаемые параметры =====
 +^ Параметр ^ Описание ^
 +|ServiceQueryResult|Результат выполнения запроса|
 +
 +<code xml>
 +<?xml version="1.0" encoding="utf-8"?>
 +<soap:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
 +  <soap:Body>
 +    <DeleteLinksWithOpenIdConnectResponse xmlns="http://streamline/">
 +      <DeleteLinksWithOpenIdConnectResult>
 +        <Errors>
 +          <string>string</string>
 +          <string>string</string>
 +        </Errors>
 +        <Objects>
 +          <string>string</string>
 +          <string>string</string>
 +        </Objects>
 +      </DeleteLinksWithOpenIdConnectResult>
 +    </DeleteLinksWithOpenIdConnectResponse>
 +  </soap:Body>
 +</soap:Envelope>
 +</code>