POST api/AccountStatusClient/AccountStatusForList?showInactive={showInactive}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| showInactive | boolean |
Required |
Body Parameters
None.
Response Information
Resource Description
AccountStatusForListLM| Name | Description | Type | Additional information |
|---|---|---|---|
| AccountStatusForList | Collection of AccountStatusForList |
None. |
|
| Response | IResponse |
None. |
Response Formats
application/json, text/json
Sample:
{
"AccountStatusForList": [
{
"AccountStatusID": 1,
"AccountStatus": "sample string 2"
},
{
"AccountStatusID": 1,
"AccountStatus": "sample string 2"
}
],
"Response": null
}
application/xml, text/xml
Sample:
<AccountStatusForListLM xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Debtrak.BusinessObjects.ViewModels.Account.AccountStatus">
<Response i:nil="true" xmlns="http://schemas.datacontract.org/2004/07/Debtrak.BusinessObjects.ViewModels" />
<AccountStatusForList xmlns:d2p1="http://schemas.datacontract.org/2004/07/Debtrak.BusinessObjects.Models.AccountStatus">
<d2p1:AccountStatusForList>
<d2p1:AccountStatus>sample string 2</d2p1:AccountStatus>
<d2p1:AccountStatusID>1</d2p1:AccountStatusID>
</d2p1:AccountStatusForList>
<d2p1:AccountStatusForList>
<d2p1:AccountStatus>sample string 2</d2p1:AccountStatus>
<d2p1:AccountStatusID>1</d2p1:AccountStatusID>
</d2p1:AccountStatusForList>
</AccountStatusForList>
</AccountStatusForListLM>