GET api/accounts

Request Information

URI Parameters

None.

Body Parameters

None.

Response Information

Resource Description

Collection of AccountListItem
NameDescriptionTypeAdditional information
AccountUID

integer

None.

Name

string

None.

Active

boolean

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "AccountUID": 1,
    "Name": "sample string 2",
    "Active": true
  },
  {
    "AccountUID": 1,
    "Name": "sample string 2",
    "Active": true
  }
]

application/xml, text/xml

Sample:
<ArrayOfAccountListItem xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/LeadExec.DynamicService.Editor.API.Models">
  <AccountListItem>
    <AccountUID>1</AccountUID>
    <Active>true</Active>
    <Name>sample string 2</Name>
  </AccountListItem>
  <AccountListItem>
    <AccountUID>1</AccountUID>
    <Active>true</Active>
    <Name>sample string 2</Name>
  </AccountListItem>
</ArrayOfAccountListItem>