GET api/UserListClass

Request Information

URI Parameters

None.

Body Parameters

None.

Response Information

Resource Description

Collection of UserListClass
NameDescriptionTypeAdditional information
UserID

string

None.

ListUserID

integer

None.

ListID

integer

None.

UpdatedAt

date

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "UserID": "sample string 1",
    "ListUserID": 2,
    "ListID": 3,
    "UpdatedAt": null
  },
  {
    "UserID": "sample string 1",
    "ListUserID": 2,
    "ListID": 3,
    "UpdatedAt": null
  }
]

application/xml, text/xml

Sample:
<ArrayOfUserListClass xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ShoppingService">
  <UserListClass>
    <UpdatedAt xmlns:d3p1="http://schemas.datacontract.org/2004/07/System" i:nil="true" xmlns="http://schemas.datacontract.org/2004/07/ShoppingService.Models" />
    <ListID>3</ListID>
    <ListUserID>2</ListUserID>
    <UserID>sample string 1</UserID>
  </UserListClass>
  <UserListClass>
    <UpdatedAt xmlns:d3p1="http://schemas.datacontract.org/2004/07/System" i:nil="true" xmlns="http://schemas.datacontract.org/2004/07/ShoppingService.Models" />
    <ListID>3</ListID>
    <ListUserID>2</ListUserID>
    <UserID>sample string 1</UserID>
  </UserListClass>
</ArrayOfUserListClass>