GET api/Lookup/GetDisbursementTypeList
Request Information
URI Parameters
None.
Body Parameters
None.
Response Information
Resource Description
Collection of APIDataLookupDisbursementType| Name | Description | Type | Additional information |
|---|---|---|---|
| DisbursementTypeID | integer |
None. |
|
| DisbursementName | string |
None. |
|
| Current | boolean |
None. |
|
| EmployeeDisbursement | boolean |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"DisbursementTypeID": 1,
"DisbursementName": "sample string 2",
"Current": true,
"EmployeeDisbursement": true
},
{
"DisbursementTypeID": 1,
"DisbursementName": "sample string 2",
"Current": true,
"EmployeeDisbursement": true
}
]
application/xml, text/xml
Sample:
<ArrayOfAPIDataLookupDisbursementType xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Abtrac6.API.APIDataModels">
<APIDataLookupDisbursementType>
<Current>true</Current>
<DisbursementName>sample string 2</DisbursementName>
<DisbursementTypeID>1</DisbursementTypeID>
<EmployeeDisbursement>true</EmployeeDisbursement>
</APIDataLookupDisbursementType>
<APIDataLookupDisbursementType>
<Current>true</Current>
<DisbursementName>sample string 2</DisbursementName>
<DisbursementTypeID>1</DisbursementTypeID>
<EmployeeDisbursement>true</EmployeeDisbursement>
</APIDataLookupDisbursementType>
</ArrayOfAPIDataLookupDisbursementType>