GET api/licenses/preorder?licensePriceID={licensePriceID}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| licensePriceID | integer |
Required |
Body Parameters
None.
Response Information
Resource Description
PreOrderData| Name | Description | Type | Additional information |
|---|---|---|---|
| ID | integer |
None. |
|
| AppID | string |
None. |
|
| AppName | string |
None. |
|
| Code | string |
None. |
|
| Status | PreOrderStatusEnum |
None. |
|
| Months | integer |
None. |
|
| MonthlyPrice | decimal number |
None. |
|
| PercentageDiscount | decimal number |
None. |
|
| TotalPrice | decimal number |
None. |
|
| FinalPrice | decimal number |
None. |
|
| CreatedOn | date |
None. |
|
| ExpirationDate | date |
None. |
|
| PaymentUrl | string |
None. |
|
| ChargeDate | date |
None. |
|
| MoneyReleaseDate | date |
None. |
|
| NetAmount | decimal number |
None. |
|
| Source | string |
None. |
|
| CreatedOnToDateTimeStr | string |
None. |
|
| StatusAsStr | string |
None. |
|
| ChargeDateToDateTimeStr | string |
None. |
|
| MoneyReleaseDateToDateTimeStr | string |
None. |
Response Formats
application/json, text/json
Sample:
{
"ID": 1,
"AppID": "sample string 1",
"AppName": "sample string 2",
"Code": "sample string 3",
"Status": 0,
"Months": 1,
"MonthlyPrice": 1.0,
"PercentageDiscount": 1.0,
"TotalPrice": 1.0,
"FinalPrice": 1.0,
"CreatedOn": "2026-09-20T10:01:11.1462072+00:00",
"ExpirationDate": "2026-09-20T10:01:11.1462072+00:00",
"PaymentUrl": "sample string 4",
"ChargeDate": "2026-09-20T10:01:11.1462072+00:00",
"MoneyReleaseDate": "2026-09-20T10:01:11.1462072+00:00",
"NetAmount": 1.0,
"Source": "sample string 5",
"CreatedOnToDateTimeStr": "20/09/2026 07:01",
"StatusAsStr": "Nueva",
"ChargeDateToDateTimeStr": "20/09/2026 07:01",
"MoneyReleaseDateToDateTimeStr": "20/09/2026 07:01"
}
text/xml
Sample:
<PreOrderData 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> <AppName>sample string 2</AppName> <ChargeDate>2026-09-20T10:01:11.1462072+00:00</ChargeDate> <Code>sample string 3</Code> <CreatedOn>2026-09-20T10:01:11.1462072+00:00</CreatedOn> <ExpirationDate>2026-09-20T10:01:11.1462072+00:00</ExpirationDate> <FinalPrice>1</FinalPrice> <ID>1</ID> <MoneyReleaseDate>2026-09-20T10:01:11.1462072+00:00</MoneyReleaseDate> <MonthlyPrice>1</MonthlyPrice> <Months>1</Months> <NetAmount>1</NetAmount> <PaymentUrl>sample string 4</PaymentUrl> <PercentageDiscount>1</PercentageDiscount> <Source>sample string 5</Source> <Status>NEW</Status> <TotalPrice>1</TotalPrice> </PreOrderData>