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