GET api/communication/folder/{id}
Request Information
URI Parameters
Name | Description | Type | Additional information |
---|---|---|---|
id | integer |
Required |
Body Parameters
None.
Response Information
Resource Description
WebMethodResultOfFolderName | Description | Type | Additional information |
---|---|---|---|
Result | Folder |
None. |
|
Success | boolean |
None. |
|
ErrorText | string |
None. |
Response Formats
application/json, text/json
Sample:
{ "Result": { "Id": 1, "ClientId": 2, "RecipientType": "Undefined", "Name": "sample string 4" }, "Success": true, "ErrorText": "sample string 2" }
application/javascript
Sample:
{"Result":{"Id":1,"ClientId":2,"RecipientType":"Undefined","Name":"sample string 4"},"Success":true,"ErrorText":"sample string 2"}
application/xml, text/xml
Sample:
<WebMethodResultOfFolder xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <Success>true</Success> <ErrorText>sample string 2</ErrorText> <Result> <Id>1</Id> <ClientId>2</ClientId> <ObjectTypeFlag>Undefined</ObjectTypeFlag> <RecipientType>Undefined</RecipientType> <Name>sample string 4</Name> </Result> </WebMethodResultOfFolder>