GET api/AccountPool/GetAccountPoolByAccountID?accountID={accountID}&showInactive={showInactive}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| accountID | integer |
Required |
|
| showInactive | boolean |
Required |
Body Parameters
None.
Response Information
Resource Description
AccountPoolInfoVM| Name | Description | Type | Additional information |
|---|---|---|---|
| AccountID | integer |
None. |
|
| Pool | string |
None. |
|
| CreateTS | date |
None. |
Response Formats
application/json, text/json
Sample:
{
"AccountID": 1,
"Pool": "sample string 1",
"CreateTS": "2026-01-15T08:39:45.1527035+00:00"
}
application/xml, text/xml
Sample:
<AccountPoolInfoVM xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Debtrak.BusinessObjects.ViewModels.AccountPool"> <AccountID>1</AccountID> <CreateTS>2026-01-15T08:39:45.1527035+00:00</CreateTS> <Pool>sample string 1</Pool> </AccountPoolInfoVM>