POST Api/logistics/GetScalePrinterSystemsByServerId

Request Information

URI Parameters

None.

Body Parameters

GetScalePrinterSystemsByServerIdRequestModel
NameDescriptionTypeAdditional information
ScalePrinterServerId

integer

None.

Request Formats

application/json, text/json

Sample:
{
  "ScalePrinterServerId": 1
}

application/xml, text/xml

Sample:
<GetScalePrinterSystemsByServerIdRequestModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/HotSteel.Service.Web.Models.Logistics">
  <ScalePrinterServerId>1</ScalePrinterServerId>
</GetScalePrinterSystemsByServerIdRequestModel>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

Collection of ScalePrinterSystemModel
NameDescriptionTypeAdditional information
Id

integer

None.

ScalePrinterServerId

integer

None.

Name

string

None.

ScaleIp

string

None.

PrinterIp

string

None.

PrinterPort

integer

None.

LabelName

string

None.

LabelType

string

None.

Intensity

integer

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "Id": 1,
    "ScalePrinterServerId": 2,
    "Name": "sample string 3",
    "ScaleIp": "sample string 4",
    "PrinterIp": "sample string 5",
    "PrinterPort": 6,
    "LabelName": "sample string 7",
    "LabelType": "sample string 8",
    "Intensity": 9
  },
  {
    "Id": 1,
    "ScalePrinterServerId": 2,
    "Name": "sample string 3",
    "ScaleIp": "sample string 4",
    "PrinterIp": "sample string 5",
    "PrinterPort": 6,
    "LabelName": "sample string 7",
    "LabelType": "sample string 8",
    "Intensity": 9
  }
]

application/xml, text/xml

Sample:
<ArrayOfScalePrinterSystemModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/HotSteel.Service.Web.Models.Logistics">
  <ScalePrinterSystemModel>
    <Id>1</Id>
    <Intensity>9</Intensity>
    <LabelName>sample string 7</LabelName>
    <LabelType>sample string 8</LabelType>
    <Name>sample string 3</Name>
    <PrinterIp>sample string 5</PrinterIp>
    <PrinterPort>6</PrinterPort>
    <ScaleIp>sample string 4</ScaleIp>
    <ScalePrinterServerId>2</ScalePrinterServerId>
  </ScalePrinterSystemModel>
  <ScalePrinterSystemModel>
    <Id>1</Id>
    <Intensity>9</Intensity>
    <LabelName>sample string 7</LabelName>
    <LabelType>sample string 8</LabelType>
    <Name>sample string 3</Name>
    <PrinterIp>sample string 5</PrinterIp>
    <PrinterPort>6</PrinterPort>
    <ScaleIp>sample string 4</ScaleIp>
    <ScalePrinterServerId>2</ScalePrinterServerId>
  </ScalePrinterSystemModel>
</ArrayOfScalePrinterSystemModel>