GET api/tblCusts?param0={param0}&param1={param1}&param2={param2}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
param0

string

Required

param1

string

Required

param2

string

Required

Body Parameters

None.

Response Information

Resource Description

tblCust
NameDescriptionTypeAdditional information
id

integer

None.

cName

string

None.

AreaId

integer

None.

Addr

string

None.

Phone

string

None.

coLat

decimal number

None.

coLong

decimal number

None.

Response Formats

application/json, text/json

Sample:
{
  "id": 1,
  "cName": "sample string 2",
  "AreaId": 3,
  "Addr": "sample string 4",
  "Phone": "sample string 5",
  "coLat": 6.1,
  "coLong": 7.1
}

application/xml, text/xml

Sample:
<tblCust xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Classes">
  <Addr>sample string 4</Addr>
  <AreaId>3</AreaId>
  <Phone>sample string 5</Phone>
  <cName>sample string 2</cName>
  <coLat>6.1</coLat>
  <coLong>7.1</coLong>
  <id>1</id>
</tblCust>