GET api/licenses/subscription

Request Information

URI Parameters

None.

Body Parameters

None.

Response Information

Resource Description

ApplicationSubscriptionData
NameDescriptionTypeAdditional information
ID

integer

None.

AppID

string

None.

PreapprovalId

string

None.

PayerEmail

string

None.

Status

ApplicationSubscriptionStatusEnum

None.

Title

string

None.

MonthlyPrice

decimal number

None.

PercentageDiscount

decimal number

None.

TotalPrice

decimal number

None.

FinalPrice

decimal number

None.

StartDate

date

None.

NextPaymentDate

date

None.

CreatedOn

date

None.

CancelledOn

date

None.

PaymentUrl

string

None.

StatusAsStr

string

None.

Response Formats

application/json, text/json

Sample:
{
  "ID": 1,
  "AppID": "sample string 1",
  "PreapprovalId": "sample string 2",
  "PayerEmail": "sample string 3",
  "Status": 0,
  "Title": "sample string 4",
  "MonthlyPrice": 1.0,
  "PercentageDiscount": 1.0,
  "TotalPrice": 1.0,
  "FinalPrice": 1.0,
  "StartDate": "2026-08-05T22:11:42.5813891+00:00",
  "NextPaymentDate": "2026-08-05T22:11:42.5813891+00:00",
  "CreatedOn": "2026-08-05T22:11:42.5813891+00:00",
  "CancelledOn": "2026-08-05T22:11:42.5813891+00:00",
  "PaymentUrl": "sample string 5",
  "StatusAsStr": "Pendiente"
}

text/xml

Sample:
<ApplicationSubscriptionData xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/StackBase.Common.Data.Administrator">
  <AppID>sample string 1</AppID>
  <CancelledOn>2026-08-05T22:11:42.5813891+00:00</CancelledOn>
  <CreatedOn>2026-08-05T22:11:42.5813891+00:00</CreatedOn>
  <FinalPrice>1</FinalPrice>
  <ID>1</ID>
  <MonthlyPrice>1</MonthlyPrice>
  <NextPaymentDate>2026-08-05T22:11:42.5813891+00:00</NextPaymentDate>
  <PayerEmail>sample string 3</PayerEmail>
  <PaymentUrl>sample string 5</PaymentUrl>
  <PercentageDiscount>1</PercentageDiscount>
  <PreapprovalId>sample string 2</PreapprovalId>
  <StartDate>2026-08-05T22:11:42.5813891+00:00</StartDate>
  <Status>PENDING</Status>
  <Title>sample string 4</Title>
  <TotalPrice>1</TotalPrice>
</ApplicationSubscriptionData>