POST API/PettyCashApproval/PCApprovalHistory

Request Information

URI Parameters

None.

Body Parameters

PCApprovalHistory
NameDescriptionTypeAdditional information
UserId

integer

None.

ReqDate

string

None.

PropertyId

integer

None.

UserName

string

None.

Status

string

None.

Comments

string

None.

Processedon

string

None.

Request Formats

application/json, text/json

Sample:
{
  "UserId": 1,
  "ReqDate": "sample string 2",
  "PropertyId": 3,
  "UserName": "sample string 4",
  "Status": "sample string 5",
  "Comments": "sample string 6",
  "Processedon": "sample string 7"
}

application/xml, text/xml

Sample:
<PCApprovalHistory xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/HMSApi.Models">
  <Comments>sample string 6</Comments>
  <Processedon>sample string 7</Processedon>
  <PropertyId>3</PropertyId>
  <ReqDate>sample string 2</ReqDate>
  <Status>sample string 5</Status>
  <UserId>1</UserId>
  <UserName>sample string 4</UserName>
</PCApprovalHistory>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

Collection of PCApprovalHistory
NameDescriptionTypeAdditional information
UserId

integer

None.

ReqDate

string

None.

PropertyId

integer

None.

UserName

string

None.

Status

string

None.

Comments

string

None.

Processedon

string

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "UserId": 1,
    "ReqDate": "sample string 2",
    "PropertyId": 3,
    "UserName": "sample string 4",
    "Status": "sample string 5",
    "Comments": "sample string 6",
    "Processedon": "sample string 7"
  },
  {
    "UserId": 1,
    "ReqDate": "sample string 2",
    "PropertyId": 3,
    "UserName": "sample string 4",
    "Status": "sample string 5",
    "Comments": "sample string 6",
    "Processedon": "sample string 7"
  }
]

application/xml, text/xml

Sample:
<ArrayOfPCApprovalHistory xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/HMSApi.Models">
  <PCApprovalHistory>
    <Comments>sample string 6</Comments>
    <Processedon>sample string 7</Processedon>
    <PropertyId>3</PropertyId>
    <ReqDate>sample string 2</ReqDate>
    <Status>sample string 5</Status>
    <UserId>1</UserId>
    <UserName>sample string 4</UserName>
  </PCApprovalHistory>
  <PCApprovalHistory>
    <Comments>sample string 6</Comments>
    <Processedon>sample string 7</Processedon>
    <PropertyId>3</PropertyId>
    <ReqDate>sample string 2</ReqDate>
    <Status>sample string 5</Status>
    <UserId>1</UserId>
    <UserName>sample string 4</UserName>
  </PCApprovalHistory>
</ArrayOfPCApprovalHistory>