GET api/Serial?inpSerialNumber={inpSerialNumber}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
inpSerialNumber

string

Required

Body Parameters

None.

Response Information

Resource Description

Collection of SerialDto
NameDescriptionTypeAdditional information
userId

integer

None.

cRMCustomerGUID

string

None.

currentId

integer

None.

currentCode

string

None.

currentName

string

None.

orderNumber

string

None.

productCode

string

None.

productName

string

None.

serialNumber

string

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "userId": 1,
    "cRMCustomerGUID": "sample string 2",
    "currentId": 3,
    "currentCode": "sample string 4",
    "currentName": "sample string 5",
    "orderNumber": "sample string 6",
    "productCode": "sample string 7",
    "productName": "sample string 8",
    "serialNumber": "sample string 9"
  },
  {
    "userId": 1,
    "cRMCustomerGUID": "sample string 2",
    "currentId": 3,
    "currentCode": "sample string 4",
    "currentName": "sample string 5",
    "orderNumber": "sample string 6",
    "productCode": "sample string 7",
    "productName": "sample string 8",
    "serialNumber": "sample string 9"
  }
]

application/xml, text/xml

Sample:
<ArrayOfSerialDto xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ApiB2CBaymak.Models">
  <SerialDto>
    <cRMCustomerGUID>sample string 2</cRMCustomerGUID>
    <currentCode>sample string 4</currentCode>
    <currentId>3</currentId>
    <currentName>sample string 5</currentName>
    <orderNumber>sample string 6</orderNumber>
    <productCode>sample string 7</productCode>
    <productName>sample string 8</productName>
    <serialNumber>sample string 9</serialNumber>
    <userId>1</userId>
  </SerialDto>
  <SerialDto>
    <cRMCustomerGUID>sample string 2</cRMCustomerGUID>
    <currentCode>sample string 4</currentCode>
    <currentId>3</currentId>
    <currentName>sample string 5</currentName>
    <orderNumber>sample string 6</orderNumber>
    <productCode>sample string 7</productCode>
    <productName>sample string 8</productName>
    <serialNumber>sample string 9</serialNumber>
    <userId>1</userId>
  </SerialDto>
</ArrayOfSerialDto>