POST api/EstBuildTaxReceipt/Save

Request Information

URI Parameters

None.

Body Parameters

EstBuildTaxReceiptSaveVM
NameDescriptionTypeAdditional information
BookId

integer

Required

TaxRecDate

string

Required

TaxRecRefno

string

Required

String length: inclusive between 0 and 20

Tenant

EstTenantLookupVM

Required

RentProperty

EstRentPropertyLookupVM

Required

DueDate

string

Required

TaxRecAmount

decimal number

Required

Remarks

string

String length: inclusive between 0 and 200

CreateUser

integer

Required

CreateIp

string

Required

String length: inclusive between 0 and 20

FinYearId

integer

Required

Request Formats

application/json, text/json

Sample:
{
  "BookId": 1,
  "TaxRecDate": "sample string 2",
  "TaxRecRefno": "sample string 3",
  "Tenant": {
    "TenantId": 1,
    "TenantName": "sample string 2",
    "Prefix": {
      "PrefixId": 1,
      "PrefixName": "sample string 2"
    }
  },
  "RentProperty": {
    "PropertyId": 1,
    "PropertyName": "sample string 2"
  },
  "DueDate": "sample string 4",
  "TaxRecAmount": 5.0,
  "Remarks": "sample string 6",
  "CreateUser": 7,
  "CreateIp": "sample string 8",
  "FinYearId": 9
}

application/xml, text/xml

Sample:
<EstBuildTaxReceiptSaveVM xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/WebAPI.Models">
  <BookId>1</BookId>
  <CreateIp>sample string 8</CreateIp>
  <CreateUser>7</CreateUser>
  <DueDate>sample string 4</DueDate>
  <FinYearId>9</FinYearId>
  <Remarks>sample string 6</Remarks>
  <RentProperty>
    <PropertyId>1</PropertyId>
    <PropertyName>sample string 2</PropertyName>
  </RentProperty>
  <TaxRecAmount>5</TaxRecAmount>
  <TaxRecDate>sample string 2</TaxRecDate>
  <TaxRecRefno>sample string 3</TaxRecRefno>
  <Tenant>
    <Prefix>
      <PrefixId>1</PrefixId>
      <PrefixName>sample string 2</PrefixName>
    </Prefix>
    <TenantId>1</TenantId>
    <TenantName>sample string 2</TenantName>
  </Tenant>
</EstBuildTaxReceiptSaveVM>

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.