GET api/distributionapi/distribution/{id}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| id | globally unique identifier |
Required |
Body Parameters
None.
Response Information
Resource Description
DistributionViewModel| Name | Description | Type | Additional information |
|---|---|---|---|
| id | globally unique identifier |
None. |
|
| name | string |
String length: inclusive between 0 and 100 |
|
| communication_server_id | globally unique identifier |
Required |
|
| active | boolean |
Required |
Response Formats
application/json, text/json
Sample:
{
"id": "2af74153-5261-400b-b626-9efc675643be",
"name": "sample string 2",
"communication_server_id": "0fdfbd91-e7a1-4010-91bb-344bc5ee30d3",
"active": true
}
application/xml, text/xml
Sample:
<distribution xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/EntityModel"> <active>true</active> <communication_server_id>0fdfbd91-e7a1-4010-91bb-344bc5ee30d3</communication_server_id> <id>2af74153-5261-400b-b626-9efc675643be</id> <name>sample string 2</name> </distribution>