DELETE api/PumpAndroid/DeleteBills/{name}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
name

string

None.

Body Parameters

BillDelete
NameDescriptionTypeAdditional information
BillNo

string

None.

SupplierID

integer

None.

Name

string

None.

Mo

integer

None.

Ye

integer

None.

Da

integer

None.

Request Formats

application/json, text/json

Sample:
{
  "BillNo": "sample string 1",
  "SupplierID": 2,
  "Name": "sample string 3",
  "Mo": 4,
  "Ye": 5,
  "Da": 6
}

application/xml, text/xml

Sample:
<BillDelete xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/WebApp.Models">
  <BillNo>sample string 1</BillNo>
  <Da>6</Da>
  <Mo>4</Mo>
  <Name>sample string 3</Name>
  <SupplierID>2</SupplierID>
  <Ye>5</Ye>
</BillDelete>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

Response
NameDescriptionTypeAdditional information
Message

string

None.

Status

integer

None.

Response Formats

application/json, text/json

Sample:
{
  "Message": "sample string 1",
  "Status": 2
}

application/xml, text/xml

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