PUT api/EstRentDueProcess/Confirm

Request Information

URI Parameters

None.

Body Parameters

EstRentDueProcessConfirmVM
NameDescriptionTypeAdditional information
BookId

integer

Required

ProcessId

integer

Required

ProcessDate

string

Required

ProcessNo

string

Required

String length: inclusive between 0 and 20

BookType

AccountBookTypeLookup

Required

FinYear

AccountFinYearLookup

Required

Remarks

string

String length: inclusive between 0 and 200

ConfirmUser

integer

Required

ConfirmIp

string

Required

String length: inclusive between 0 and 20

Request Formats

application/json, text/json

Sample:
{
  "BookId": 1,
  "ProcessId": 2,
  "ProcessDate": "sample string 3",
  "ProcessNo": "sample string 4",
  "BookType": {
    "BookTypeId": 1,
    "BookTypeName": "sample string 2"
  },
  "FinYear": {
    "FinYearId": 1,
    "FinYearName": "sample string 2"
  },
  "Remarks": "sample string 5",
  "ConfirmUser": 6,
  "ConfirmIp": "sample string 7"
}

application/xml, text/xml

Sample:
<EstRentDueProcessConfirmVM xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/WebAPI.Models">
  <BookId>1</BookId>
  <BookType>
    <BookTypeId>1</BookTypeId>
    <BookTypeName>sample string 2</BookTypeName>
  </BookType>
  <ConfirmIp>sample string 7</ConfirmIp>
  <ConfirmUser>6</ConfirmUser>
  <FinYear>
    <FinYearId>1</FinYearId>
    <FinYearName>sample string 2</FinYearName>
  </FinYear>
  <ProcessDate>sample string 3</ProcessDate>
  <ProcessId>2</ProcessId>
  <ProcessNo>sample string 4</ProcessNo>
  <Remarks>sample string 5</Remarks>
</EstRentDueProcessConfirmVM>

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.