GET api/subscription/get-list

Request Information

URI Parameters

None.

Body Parameters

None.

Response Information

Resource Description

Collection of SubscriptionListDTO
NameDescriptionTypeAdditional information
Name

string

None.

Type

string

None.

Id

integer

None.

From

decimal number

None.

To

decimal number

None.

Monthly

decimal number

None.

Quarterly

decimal number

None.

HalfYearly

decimal number

None.

Annual

decimal number

None.

UpdatedBy

string

None.

UpdatedDate

string

None.

UpdatedByDate

string

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "Name": "sample string 1",
    "Type": "sample string 2",
    "Id": 3,
    "From": 4.0,
    "To": 5.0,
    "Monthly": 1.0,
    "Quarterly": 1.0,
    "HalfYearly": 1.0,
    "Annual": 1.0,
    "UpdatedBy": "sample string 6",
    "UpdatedDate": "sample string 7",
    "UpdatedByDate": "sample string 8"
  },
  {
    "Name": "sample string 1",
    "Type": "sample string 2",
    "Id": 3,
    "From": 4.0,
    "To": 5.0,
    "Monthly": 1.0,
    "Quarterly": 1.0,
    "HalfYearly": 1.0,
    "Annual": 1.0,
    "UpdatedBy": "sample string 6",
    "UpdatedDate": "sample string 7",
    "UpdatedByDate": "sample string 8"
  }
]

application/xml, text/xml

Sample:
<ArrayOfSubscriptionListDTO xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/SUM.Prod.RS.Common.Components.DTO.OrgSetup">
  <SubscriptionListDTO>
    <Annual>1</Annual>
    <From>4</From>
    <HalfYearly>1</HalfYearly>
    <Id>3</Id>
    <Monthly>1</Monthly>
    <Name>sample string 1</Name>
    <Quarterly>1</Quarterly>
    <To>5</To>
    <Type>sample string 2</Type>
    <UpdatedBy>sample string 6</UpdatedBy>
    <UpdatedByDate>sample string 8</UpdatedByDate>
    <UpdatedDate>sample string 7</UpdatedDate>
  </SubscriptionListDTO>
  <SubscriptionListDTO>
    <Annual>1</Annual>
    <From>4</From>
    <HalfYearly>1</HalfYearly>
    <Id>3</Id>
    <Monthly>1</Monthly>
    <Name>sample string 1</Name>
    <Quarterly>1</Quarterly>
    <To>5</To>
    <Type>sample string 2</Type>
    <UpdatedBy>sample string 6</UpdatedBy>
    <UpdatedByDate>sample string 8</UpdatedByDate>
    <UpdatedDate>sample string 7</UpdatedDate>
  </SubscriptionListDTO>
</ArrayOfSubscriptionListDTO>