Метод: CreateTopic
Параметр | Описание |
---|---|
ASPNETSessionId | Идентификатор сессии |
projectId* | идентификатор проекта |
title* | тема дискуссии |
content | содержание дискуссии |
addressees | массив идентификаторов пользователей (GUID) |
* – параметры, обязательные для заполнения.
<?xml version="1.0" encoding="utf-8"?> <?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> <CreateTopic xmlns="http://tempuri.org/"> <ASPNETSessionId>string</ASPNETSessionId> <projectId>string</projectId> <title>string</title> <content>string</content> <addressees> <string>string</string> <string>string</string> </addressees> </CreateTopic> </soap:Body> </soap:Envelope>
Параметр | Описание |
---|---|
CreateTopicResult | Результат выполнения запроса |
<?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> <CreateTopicResponse xmlns="http://tempuri.org/"> <CreateTopicResult>string</CreateTopicResult> </CreateTopicResponse> </soap:Body> </soap:Envelope>