GET api/PumpAndroid/GetCustomerList/{code}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
code

string

None.

Body Parameters

None.

Response Information

Resource Description

Collection of Customer
NameDescriptionTypeAdditional information
SupplierID

integer

None.

Name

string

None.

Mobile

string

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "SupplierID": 1,
    "Name": "sample string 2",
    "Mobile": "sample string 3"
  },
  {
    "SupplierID": 1,
    "Name": "sample string 2",
    "Mobile": "sample string 3"
  }
]

application/xml, text/xml

Sample:
<ArrayOfCustomer xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/WebApp.Models">
  <Customer>
    <Mobile>sample string 3</Mobile>
    <Name>sample string 2</Name>
    <SupplierID>1</SupplierID>
  </Customer>
  <Customer>
    <Mobile>sample string 3</Mobile>
    <Name>sample string 2</Name>
    <SupplierID>1</SupplierID>
  </Customer>
</ArrayOfCustomer>