POST api/DomainManagment/InsertNetworkInterface

Request Information

URI Parameters

None.

Body Parameters

InsertNetworkInterfaceObject
NameDescriptionTypeAdditional information
InterfaceConnectionID

string

None.

InterfaceName

string

None.

InterfaceMACAddress

string

None.

InterfaceDescription

string

None.

AdapterType

string

None.

ServerCode

string

None.

Request Formats

application/json, text/json

Sample:
{
  "InterfaceConnectionID": "sample string 1",
  "InterfaceName": "sample string 2",
  "InterfaceMACAddress": "sample string 3",
  "InterfaceDescription": "sample string 4",
  "AdapterType": "sample string 5",
  "ServerCode": "sample string 6"
}

application/xml, text/xml

Sample:
<InsertNetworkInterfaceObject xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/DomainHostingWebApi.Controllers">
  <AdapterType>sample string 5</AdapterType>
  <InterfaceConnectionID>sample string 1</InterfaceConnectionID>
  <InterfaceDescription>sample string 4</InterfaceDescription>
  <InterfaceMACAddress>sample string 3</InterfaceMACAddress>
  <InterfaceName>sample string 2</InterfaceName>
  <ServerCode>sample string 6</ServerCode>
</InsertNetworkInterfaceObject>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

ResponseDTOOfObject
NameDescriptionTypeAdditional 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>