POST api/PumpAndroid/SaveDailyPumpDet/{name}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
name

string

None.

Body Parameters

DailyPumpDet
NameDescriptionTypeAdditional information
DEntryNo

integer

None.

EntryNo

string

None.

EntryDate

date

None.

Code

string

None.

ShiftId

integer

None.

ShiftName

string

None.

CashOperatorId

integer

None.

CashOperator

string

None.

PumpId

integer

None.

PumpName

string

None.

PumpOperatorId

integer

None.

PumpOperator

string

None.

Request Formats

application/json, text/json

Sample:
{
  "DEntryNo": 1,
  "EntryNo": "sample string 2",
  "EntryDate": "2025-12-06T09:49:59.7307331+05:30",
  "Code": "sample string 4",
  "ShiftId": 5,
  "ShiftName": "sample string 6",
  "CashOperatorId": 7,
  "CashOperator": "sample string 8",
  "PumpId": 9,
  "PumpName": "sample string 10",
  "PumpOperatorId": 11,
  "PumpOperator": "sample string 12"
}

application/xml, text/xml

Sample:
<DailyPumpDet xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/WebApp.Models">
  <CashOperator>sample string 8</CashOperator>
  <CashOperatorId>7</CashOperatorId>
  <Code>sample string 4</Code>
  <DEntryNo>1</DEntryNo>
  <EntryDate>2025-12-06T09:49:59.7307331+05:30</EntryDate>
  <EntryNo>sample string 2</EntryNo>
  <PumpId>9</PumpId>
  <PumpName>sample string 10</PumpName>
  <PumpOperator>sample string 12</PumpOperator>
  <PumpOperatorId>11</PumpOperatorId>
  <ShiftId>5</ShiftId>
  <ShiftName>sample string 6</ShiftName>
</DailyPumpDet>

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>