POST API/PettyCashRequest/PCRequestCheck
Request Information
URI Parameters
None.
Body Parameters
PettyCashReqChk| Name | Description | Type | Additional information |
|---|---|---|---|
| UserId | integer |
None. |
|
| PropertyId | integer |
None. |
|
| result | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"UserId": 1,
"PropertyId": 2,
"result": "sample string 3"
}
application/xml, text/xml
Sample:
<PettyCashReqChk xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/HMSApi.Models"> <PropertyId>2</PropertyId> <UserId>1</UserId> <result>sample string 3</result> </PettyCashReqChk>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
Collection of PettyCashReqChk| Name | Description | Type | Additional information |
|---|---|---|---|
| UserId | integer |
None. |
|
| PropertyId | integer |
None. |
|
| result | string |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"UserId": 1,
"PropertyId": 2,
"result": "sample string 3"
},
{
"UserId": 1,
"PropertyId": 2,
"result": "sample string 3"
}
]
application/xml, text/xml
Sample:
<ArrayOfPettyCashReqChk xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/HMSApi.Models">
<PettyCashReqChk>
<PropertyId>2</PropertyId>
<UserId>1</UserId>
<result>sample string 3</result>
</PettyCashReqChk>
<PettyCashReqChk>
<PropertyId>2</PropertyId>
<UserId>1</UserId>
<result>sample string 3</result>
</PettyCashReqChk>
</ArrayOfPettyCashReqChk>