GET DeliverySites({id})/DeliveryControllers
Get delivery controllers for a delivery site.
Request Information
Parameters
| Name | Description | Additional information |
|---|---|---|
| id | ID of the delivery site. |
Type: |
| name |
Type: String |
|
| filterBy | See Filtering, Arranging, and Paging. The supported filters are:
|
Type: Filter |
| filterProp |
Type: String |
|
| arrangeBy | See Filtering, Arranging, and Paging. The supported arrangers are:
|
Type: String |
| skip |
Type: Number |
|
| take |
Type: Number |
Response Information
A list of delivery controllers.
Response type
CollectionResultModel<DeliveryControllerModel>
Response body formats
application/json, text/json
Sample:
{
"Href": "[api:DeliverySites(0ef3e68d-bb8e-4b69-9c30-ae3fac533996)/DeliveryControllers]",
"Count": 1,
"TotalMatchingFilter": 1,
"Items": [
{
"Href": "[api:DeliveryControllers(34c04635-50fc-4506-99fc-da1b459fbefa)]",
"Id": "34c04635-50fc-4506-99fc-da1b459fbefa",
"ChangeId": "10",
"Name": "controller1",
"XmlServerRank": 1,
"Tags": [
"tag"
],
"CustomProperties": [
{
"Name": "myProperty",
"Value": "myValue"
}
],
"DeleteState": "NotDeleted",
"State": "Allocated",
"Architecture": "FMA",
"CPUs": 2,
"MemoryMB": 4096,
"OSName": "Windows Server 2008 R2",
"OSVersion": "Service Pack 1",
"DeliverySite": {
"Href": "[api:DeliverySites(0ef3e68d-bb8e-4b69-9c30-ae3fac533996)]",
"Name": "site1",
"Id": "0ef3e68d-bb8e-4b69-9c30-ae3fac533996"
},
"MachineDetail": {
"Href": "[api:MachineDetails(bff69e21-c280-488b-ad9e-74b674ffb7c9)]",
"Name": "machine1",
"Id": "bff69e21-c280-488b-ad9e-74b674ffb7c9"
},
"HealthSummary": {
"ActiveCount": 0,
"ErrorCount": 0,
"WarningCount": 0,
"InfoCount": 1,
"Messages": [
{
"Text": "Attempting to reach desired capacity",
"IsError": false,
"IsWarning": false,
"IsInfo": false,
"IsActive": true,
"Type": "Allocation"
}
]
}
}
]
}