GET api/ArrangementClient/SelectForListByAccountID?accountID={accountID}&showInactive={showInactive}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
accountID

integer

Required

showInactive

boolean

Required

Body Parameters

None.

Response Information

Resource Description

Collection of ArrangementForList
NameDescriptionTypeAdditional information
ArrangementID

integer

None.

Arrangement

string

None.

IsChecked

boolean

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "ArrangementID": 1,
    "Arrangement": "sample string 2",
    "IsChecked": true
  },
  {
    "ArrangementID": 1,
    "Arrangement": "sample string 2",
    "IsChecked": true
  }
]

application/xml, text/xml

Sample:
<ArrayOfArrangementForList xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Debtrak.BusinessObjects.Models.Arrangement">
  <ArrangementForList>
    <Arrangement>sample string 2</Arrangement>
    <ArrangementID>1</ArrangementID>
    <IsChecked>true</IsChecked>
  </ArrangementForList>
  <ArrangementForList>
    <Arrangement>sample string 2</Arrangement>
    <ArrangementID>1</ArrangementID>
    <IsChecked>true</IsChecked>
  </ArrangementForList>
</ArrayOfArrangementForList>