GET api/account/all

Request Information

URI Parameters

None.

Body Parameters

None.

Response Information

Resource Description

Collection of Account
NameDescriptionTypeAdditional information
AccountId

integer

None.

AccountName

string

None.

AccountActive

integer

None.

AccountActiveDate

date

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "AccountId": 1,
    "AccountName": "sample string 2",
    "AccountActive": 3,
    "AccountActiveDate": "2024-04-19T18:42:00.9061419-05:00"
  },
  {
    "AccountId": 1,
    "AccountName": "sample string 2",
    "AccountActive": 3,
    "AccountActiveDate": "2024-04-19T18:42:00.9061419-05:00"
  }
]

text/html

Sample:
[{"AccountId":1,"AccountName":"sample string 2","AccountActive":3,"AccountActiveDate":"2024-04-19T18:42:00.9061419-05:00"},{"AccountId":1,"AccountName":"sample string 2","AccountActive":3,"AccountActiveDate":"2024-04-19T18:42:00.9061419-05:00"}]

application/xml, text/xml

Sample:
<ArrayOfAccount xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/FeedFlowAPI.Models.Permissions">
  <Account>
    <AccountActive>3</AccountActive>
    <AccountActiveDate>2024-04-19T18:42:00.9061419-05:00</AccountActiveDate>
    <AccountId>1</AccountId>
    <AccountName>sample string 2</AccountName>
  </Account>
  <Account>
    <AccountActive>3</AccountActive>
    <AccountActiveDate>2024-04-19T18:42:00.9061419-05:00</AccountActiveDate>
    <AccountId>1</AccountId>
    <AccountName>sample string 2</AccountName>
  </Account>
</ArrayOfAccount>