POST api/EstTenantRemarks/Save

Request Information

URI Parameters

None.

Body Parameters

EstTenantRemarksSaveVM
NameDescriptionTypeAdditional information
BookId

integer

Required

Tenant

EstTenantLookupVM

Required

RemarksDate

string

Required

Remarks

string

Required

String length: inclusive between 0 and 300

Status

string

Required

Matching regular expression pattern: A|I

CreateUser

integer

Required

CreateIp

string

Required

String length: inclusive between 0 and 20

Request Formats

application/json, text/json

Sample:
{
  "BookId": 1,
  "Tenant": {
    "TenantId": 1,
    "TenantName": "sample string 2",
    "Prefix": {
      "PrefixId": 1,
      "PrefixName": "sample string 2"
    }
  },
  "RemarksDate": "sample string 2",
  "Remarks": "sample string 3",
  "Status": "sample string 4",
  "CreateUser": 5,
  "CreateIp": "sample string 6"
}

application/xml, text/xml

Sample:
<EstTenantRemarksSaveVM xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/WebAPI.Models">
  <BookId>1</BookId>
  <CreateIp>sample string 6</CreateIp>
  <CreateUser>5</CreateUser>
  <Remarks>sample string 3</Remarks>
  <RemarksDate>sample string 2</RemarksDate>
  <Status>sample string 4</Status>
  <Tenant>
    <Prefix>
      <PrefixId>1</PrefixId>
      <PrefixName>sample string 2</PrefixName>
    </Prefix>
    <TenantId>1</TenantId>
    <TenantName>sample string 2</TenantName>
  </Tenant>
</EstTenantRemarksSaveVM>

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.