GET api/AccountPool/GetAccountPoolByAccountID?accountID={accountID}&showInactive={showInactive}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
accountID

integer

Required

showInactive

boolean

Required

Body Parameters

None.

Response Information

Resource Description

AccountPoolInfoVM
NameDescriptionTypeAdditional information
AccountID

integer

None.

Pool

string

None.

CreateTS

date

None.

Response Formats

application/json, text/json

Sample:
{
  "AccountID": 1,
  "Pool": "sample string 1",
  "CreateTS": "2025-09-02T23:06:50.0130486+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>2025-09-02T23:06:50.0130486+00:00</CreateTS>
  <Pool>sample string 1</Pool>
</AccountPoolInfoVM>