GET | /sales/packages/{PackageId}/installments | Get sales package installments |
---|
Imports System
Imports System.Collections
Imports System.Collections.Generic
Imports System.Runtime.Serialization
Imports ServiceStack
Imports ServiceStack.DataAnnotations
Imports ClubReady.Web.Api.Sales.Model
Imports ClubReady.Core.Api.Models
Imports ClubReady.Web.Api
Namespace Global
Namespace ClubReady.Core.Api.Models
Public Partial Class ApiDtoBase
Public Overridable Property ApiKey As String
Public Overridable Property StoreId As Nullable(Of Integer)
Public Overridable Property ChainId As Nullable(Of Integer)
End Class
Public Partial Class GetSalesPackageInstallmentsDto
Inherits ApiDtoBase
Public Overridable Property PackageId As Integer
End Class
End Namespace
Namespace ClubReady.Web.Api
Public Enum RestrictedResourceType
Store
Chain
User
Undefined
End Enum
End Namespace
Namespace ClubReady.Web.Api.Sales.Model
Public Partial Class GetSalesPackageDiscountsRequest
Inherits GetSalesPackageInstallmentsDto
Implements IRestrictedApiRequest
'''<Summary>
'''Api Key - grants access to resources
'''</Summary>
<ApiMember(DataType:="string", Description:="Api Key - grants access to resources", IsRequired:=true, Name:="ApiKey", ParameterType:="query")>
Public Overridable Property ApiKey As String
'''<Summary>
'''ID # of store to get package plans for
'''</Summary>
<ApiMember(DataType:="string", Description:="ID # of store to get package plans for", IsRequired:=true, Name:="StoreId", ParameterType:="query")>
Public Overridable Property StoreId As Nullable(Of Integer)
'''<Summary>
'''ID # of package to get installment plans for
'''</Summary>
<ApiMember(DataType:="string", Description:="ID # of package to get installment plans for", IsRequired:=true, Name:="PackageId", ParameterType:="path")>
Public Overridable Property PackageId As Integer
Public Overridable Property RestrictedId As Nullable(Of Integer)
Public Overridable Property RestrictedResourceType As RestrictedResourceType
End Class
End Namespace
End Namespace
VB.NET GetSalesPackageDiscountsRequest DTOs
To override the Content-type in your clients, use the HTTP Accept Header, append the .xml suffix or ?format=xml
The following are sample HTTP requests and responses. The placeholders shown need to be replaced with actual values.
GET /sales/packages/{PackageId}/installments HTTP/1.1 Host: clubready.com Accept: application/xml
HTTP/1.1 200 OK Content-Type: application/xml Content-Length: length <ArrayOfSalesPackageInstallmentPlanResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ClubReady.Core.Api.Models"> <SalesPackageInstallmentPlanResponse> <DuePerPayment>String</DuePerPayment> <Fees> <PackageFee> <Amount>String</Amount> <CanBeWaived>false</CanBeWaived> <CanDuplicate>false</CanDuplicate> <DueUpfront>false</DueUpfront> <Name>String</Name> <OneTime>false</OneTime> <PayFrequencyMonths>0</PayFrequencyMonths> <Taxable>false</Taxable> </PackageFee> </Fees> <ForOnlineSale>false</ForOnlineSale> <Id>0</Id> <PaymentCount>0</PaymentCount> </SalesPackageInstallmentPlanResponse> </ArrayOfSalesPackageInstallmentPlanResponse>