GET api/ArrangementClient/GetArrangementTypeListByAccountID?accountID={accountID}&showAllIfEmpty={showAllIfEmpty}&showInactive={showInactive}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| accountID | integer |
Required |
|
| showAllIfEmpty | boolean |
Required |
|
| showInactive | boolean |
Required |
Body Parameters
None.
Response Information
Resource Description
ArrangementTypeForListVM| Name | Description | Type | Additional information |
|---|---|---|---|
| ArrangementtypeList | Collection of ArrangementTypeForList |
None. |
|
| Response | IResponse |
None. |
Response Formats
application/json, text/json
Sample:
{
"ArrangementtypeList": [
{
"ArrangementTypeID": 1,
"ArrangementType": "sample string 1"
},
{
"ArrangementTypeID": 1,
"ArrangementType": "sample string 1"
}
],
"Response": null
}
application/xml, text/xml
Sample:
<ArrangementTypeForListVM xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Debtrak.BusinessObjects.ViewModels.ArrangementType">
<Response i:nil="true" xmlns="http://schemas.datacontract.org/2004/07/Debtrak.BusinessObjects.ViewModels" />
<ArrangementtypeList xmlns:d2p1="http://schemas.datacontract.org/2004/07/Debtrak.BusinessObjects.Models.ArrangementType">
<d2p1:ArrangementTypeForList>
<d2p1:ArrangementType>sample string 1</d2p1:ArrangementType>
<d2p1:ArrangementTypeID>1</d2p1:ArrangementTypeID>
</d2p1:ArrangementTypeForList>
<d2p1:ArrangementTypeForList>
<d2p1:ArrangementType>sample string 1</d2p1:ArrangementType>
<d2p1:ArrangementTypeID>1</d2p1:ArrangementTypeID>
</d2p1:ArrangementTypeForList>
</ArrangementtypeList>
</ArrangementTypeForListVM>