POST api/voucher/savetxns

Request Information

URI Parameters

None.

Body Parameters

ReceiptPaymentDto
NameDescriptionTypeAdditional information
VendorId

integer

None.

VchType

string

None.

EntryNo

integer

None.

EntryDate

date

None.

ModeId

integer

None.

PartyId

integer

None.

Amount

decimal number

None.

Remark

string

None.

Request Formats

application/json, text/json

Sample:
{
  "VendorId": 1,
  "VchType": "sample string 2",
  "EntryNo": 3,
  "EntryDate": "2026-05-26T15:17:01.7021669+05:30",
  "ModeId": 5,
  "PartyId": 6,
  "Amount": 7.0,
  "Remark": "sample string 8"
}

application/xml, text/xml

Sample:
<ReceiptPaymentDto xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/timberapi.Models">
  <Amount>7</Amount>
  <EntryDate>2026-05-26T15:17:01.7021669+05:30</EntryDate>
  <EntryNo>3</EntryNo>
  <ModeId>5</ModeId>
  <PartyId>6</PartyId>
  <Remark>sample string 8</Remark>
  <VchType>sample string 2</VchType>
  <VendorId>1</VendorId>
</ReceiptPaymentDto>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

IHttpActionResult

None.

Response Formats

application/json, text/json, application/xml, text/xml

Sample:

Sample not available.