GET api/Packages

Request Information

URI Parameters

None.

Body Parameters

None.

Response Information

Resource Description

Collection of Package
NameDescriptionTypeAdditional information
PackageId

integer

None.

PackageName

string

None.

StoreId

integer

None.

StatusTypeId

integer

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "PackageId": 1,
    "PackageName": "sample string 2",
    "StoreId": 1,
    "StatusTypeId": 1
  },
  {
    "PackageId": 1,
    "PackageName": "sample string 2",
    "StoreId": 1,
    "StatusTypeId": 1
  }
]

application/xml, text/xml

Sample:
<ArrayOfPackage xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/GNGroup.Models">
  <Package>
    <PackageId>1</PackageId>
    <PackageName>sample string 2</PackageName>
    <StatusTypeId>1</StatusTypeId>
    <StoreId>1</StoreId>
  </Package>
  <Package>
    <PackageId>1</PackageId>
    <PackageName>sample string 2</PackageName>
    <StatusTypeId>1</StatusTypeId>
    <StoreId>1</StoreId>
  </Package>
</ArrayOfPackage>