POST Api/logistics/GetScalePrinterServers

Request Information

URI Parameters

None.

Body Parameters

None.

Response Information

Resource Description

Collection of ScalePrinterServerModel
NameDescriptionTypeAdditional information
Id

integer

None.

Name

string

None.

IpAddress

string

None.

Port

integer

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "Id": 1,
    "Name": "sample string 2",
    "IpAddress": "sample string 3",
    "Port": 4
  },
  {
    "Id": 1,
    "Name": "sample string 2",
    "IpAddress": "sample string 3",
    "Port": 4
  }
]

application/xml, text/xml

Sample:
<ArrayOfScalePrinterServerModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/HotSteel.Service.Web.Models.Logistics">
  <ScalePrinterServerModel>
    <Id>1</Id>
    <IpAddress>sample string 3</IpAddress>
    <Name>sample string 2</Name>
    <Port>4</Port>
  </ScalePrinterServerModel>
  <ScalePrinterServerModel>
    <Id>1</Id>
    <IpAddress>sample string 3</IpAddress>
    <Name>sample string 2</Name>
    <Port>4</Port>
  </ScalePrinterServerModel>
</ArrayOfScalePrinterServerModel>