GET api/account/{id}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
id

string

Required

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-03-29T07:47:53.3049332-05:00"
  },
  {
    "AccountId": 1,
    "AccountName": "sample string 2",
    "AccountActive": 3,
    "AccountActiveDate": "2024-03-29T07:47:53.3049332-05:00"
  }
]

text/html

Sample:
[{"AccountId":1,"AccountName":"sample string 2","AccountActive":3,"AccountActiveDate":"2024-03-29T07:47:53.3049332-05:00"},{"AccountId":1,"AccountName":"sample string 2","AccountActive":3,"AccountActiveDate":"2024-03-29T07:47:53.3049332-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-03-29T07:47:53.3049332-05:00</AccountActiveDate>
    <AccountId>1</AccountId>
    <AccountName>sample string 2</AccountName>
  </Account>
  <Account>
    <AccountActive>3</AccountActive>
    <AccountActiveDate>2024-03-29T07:47:53.3049332-05:00</AccountActiveDate>
    <AccountId>1</AccountId>
    <AccountName>sample string 2</AccountName>
  </Account>
</ArrayOfAccount>