POST api/v1/CashTransferSave

Request Information

URI Parameters

None.

Body Parameters

CashTransferSaveInput
NameDescriptionTypeAdditional information
Mode

string

None.

CashDepositID

integer

None.

CompID

integer

None.

LocID

integer

None.

UserID

integer

None.

DepositDate

date

None.

TransferAmount

decimal number

None.

Narration

string

None.

TranType

string

None.

Request Formats

application/json, text/json

Sample:
{
  "Mode": "sample string 1",
  "CashDepositID": 2,
  "CompID": 3,
  "LocID": 4,
  "UserID": 5,
  "DepositDate": "2025-12-15T02:50:01.8590811+05:30",
  "TransferAmount": 6.0,
  "Narration": "sample string 7",
  "TranType": "sample string 8"
}

application/xml, text/xml

Sample:
<CashTransferSaveInput xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/WebAPI.Models">
  <CashDepositID>2</CashDepositID>
  <CompID>3</CompID>
  <DepositDate>2025-12-15T02:50:01.8590811+05:30</DepositDate>
  <LocID>4</LocID>
  <Mode>sample string 1</Mode>
  <Narration>sample string 7</Narration>
  <TranType>sample string 8</TranType>
  <TransferAmount>6</TransferAmount>
  <UserID>5</UserID>
</CashTransferSaveInput>

application/x-www-form-urlencoded

Sample:

Failed to generate the sample for media type 'application/x-www-form-urlencoded'. Cannot use formatter 'JQueryMvcFormUrlEncodedFormatter' to write type 'CashTransferSaveInput'.

Response Information

Resource Description

HttpResponseMessage
NameDescriptionTypeAdditional information
Version

Version

None.

Content

HttpContent

None.

StatusCode

HttpStatusCode

None.

ReasonPhrase

string

None.

Headers

Collection of Object

None.

RequestMessage

HttpRequestMessage

None.

IsSuccessStatusCode

boolean

None.