GET API/PettyCashExpenseReport/GetAllProperty/{UserId}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| UserId | integer |
Required |
Body Parameters
None.
Response Information
Resource Description
Collection of PCEReportPropertyLoad| Name | Description | Type | Additional information |
|---|---|---|---|
| label | string |
None. |
|
| PropertyId | integer |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"label": "sample string 1",
"PropertyId": 2
},
{
"label": "sample string 1",
"PropertyId": 2
}
]
application/xml, text/xml
Sample:
<ArrayOfPCEReportPropertyLoad xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/HMSApi.Models">
<PCEReportPropertyLoad>
<PropertyId>2</PropertyId>
<label>sample string 1</label>
</PCEReportPropertyLoad>
<PCEReportPropertyLoad>
<PropertyId>2</PropertyId>
<label>sample string 1</label>
</PCEReportPropertyLoad>
</ArrayOfPCEReportPropertyLoad>