POST api/DomainManagment/InsertIPConfiguration
Request Information
URI Parameters
None.
Body Parameters
InsertIPConfigurationObject| Name | Description | Type | Additional information |
|---|---|---|---|
| privateIP | string |
None. |
|
| publicIP | string |
None. |
|
| subnet | string |
None. |
|
| mac | string |
None. |
|
| serverCode | string |
None. |
|
| poolGroup | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"privateIP": "sample string 1",
"publicIP": "sample string 2",
"subnet": "sample string 3",
"mac": "sample string 4",
"serverCode": "sample string 5",
"poolGroup": "sample string 6"
}
application/xml, text/xml
Sample:
<InsertIPConfigurationObject xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/DomainHostingWebApi.Controllers"> <mac>sample string 4</mac> <poolGroup>sample string 6</poolGroup> <privateIP>sample string 1</privateIP> <publicIP>sample string 2</publicIP> <serverCode>sample string 5</serverCode> <subnet>sample string 3</subnet> </InsertIPConfigurationObject>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
ResponseDTOOfObject| Name | Description | Type | Additional information |
|---|---|---|---|
| IsSuccess | boolean |
None. |
|
| Data | Object |
None. |
|
| Message | string |
None. |
|
| StatusCode | integer |
None. |
Response Formats
application/json, text/json
Sample:
{
"IsSuccess": true,
"Data": {},
"Message": "sample string 3",
"StatusCode": 4
}
application/xml, text/xml
Sample:
<ResponseDTOOfanyType xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/DomainHostingWebApi"> <Data /> <IsSuccess>true</IsSuccess> <Message>sample string 3</Message> <StatusCode>4</StatusCode> </ResponseDTOOfanyType>