GET api/v1/useraccountstates/listitems

Request Information

URI Parameters

None.

Body Parameters

None.

Response Information

Resource Description

Collection of UserAccountStateListItem
NameDescriptionTypeAdditional information
UserAccountStateId

integer

None.

AccountStateName

string

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "UserAccountStateId": 1,
    "AccountStateName": "sample string 2"
  },
  {
    "UserAccountStateId": 1,
    "AccountStateName": "sample string 2"
  }
]

text/html

Sample:
[{"UserAccountStateId":1,"AccountStateName":"sample string 2"},{"UserAccountStateId":1,"AccountStateName":"sample string 2"}]

application/xml, text/xml

Sample:
<ArrayOfUserAccountStateListItem xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/FLS.Data.WebApi.User">
  <UserAccountStateListItem>
    <AccountStateName>sample string 2</AccountStateName>
    <UserAccountStateId>1</UserAccountStateId>
  </UserAccountStateListItem>
  <UserAccountStateListItem>
    <AccountStateName>sample string 2</AccountStateName>
    <UserAccountStateId>1</UserAccountStateId>
  </UserAccountStateListItem>
</ArrayOfUserAccountStateListItem>