GET api/PumpAndroid/GetIndentNo/{name}?code={code}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
code

string

Required

name

string

None.

Body Parameters

None.

Response Information

Resource Description

Collection of IndentNo
NameDescriptionTypeAdditional information
IndentId

integer

None.

Code

string

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "IndentId": 1,
    "Code": "sample string 2"
  },
  {
    "IndentId": 1,
    "Code": "sample string 2"
  }
]

application/xml, text/xml

Sample:
<ArrayOfIndentNo xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/WebApp.Models">
  <IndentNo>
    <Code>sample string 2</Code>
    <IndentId>1</IndentId>
  </IndentNo>
  <IndentNo>
    <Code>sample string 2</Code>
    <IndentId>1</IndentId>
  </IndentNo>
</ArrayOfIndentNo>