All Verbs | /quote/{Id}/{Quantity} | ||
---|---|---|---|
All Verbs | /quote/{Id}/{Quantity}/{Coupon} | ||
GET | /GetQuote | ||
GET | /GetQuote/{Id} |
"use strict";
export class QuoteResponse {
/** @param {{skuId?:number,code?:string,customerId?:number,modifyingExistingSubscription?:boolean,changingSubscriptions?:boolean,switchingLicensingModels?:boolean,replacesExistingQuantity?:boolean,existingSubscriptionQuantity?:number,newSubscriptionQuantity?:number,unusedAmount?:string,manualProrating?:boolean,unusedDays?:number,quantity?:number,minQuantity?:number,maxQuantity?:number,subtotal?:string,discountDescription?:string,discountReceived?:string,discount?:string,total?:string,expiryDate?:string,renewalDate?:string,isReferrer?:boolean,responseStatus?:ResponseStatus}} [init] */
constructor(init) { Object.assign(this, init) }
/** @type {number} */
skuId;
/** @type {string} */
code;
/** @type {?number} */
customerId;
/** @type {boolean} */
modifyingExistingSubscription;
/** @type {boolean} */
changingSubscriptions;
/** @type {boolean} */
switchingLicensingModels;
/** @type {boolean} */
replacesExistingQuantity;
/** @type {?number} */
existingSubscriptionQuantity;
/** @type {?number} */
newSubscriptionQuantity;
/** @type {string} */
unusedAmount;
/** @type {boolean} */
manualProrating;
/** @type {number} */
unusedDays;
/** @type {number} */
quantity;
/** @type {number} */
minQuantity;
/** @type {?number} */
maxQuantity;
/** @type {string} */
subtotal;
/** @type {string} */
discountDescription;
/** @type {string} */
discountReceived;
/** @type {string} */
discount;
/** @type {string} */
total;
/** @type {string} */
expiryDate;
/** @type {string} */
renewalDate;
/** @type {boolean} */
isReferrer;
/** @type {ResponseStatus} */
responseStatus;
}
export class GetQuote {
/** @param {{id?:number,quantity?:number,coupon?:string,renewalRef?:string,upgradeRef?:string}} [init] */
constructor(init) { Object.assign(this, init) }
/** @type {number} */
id;
/** @type {number} */
quantity;
/** @type {string} */
coupon;
/** @type {string} */
renewalRef;
/** @type {string} */
upgradeRef;
}
To override the Content-type in your clients, use the HTTP Accept Header, append the .jsv suffix or ?format=jsv
The following are sample HTTP requests and responses. The placeholders shown need to be replaced with actual values.
POST /quote/{Id}/{Quantity} HTTP/1.1
Host: account.servicestack.net
Accept: text/jsv
Content-Type: text/jsv
Content-Length: length
{
id: 0,
quantity: 0,
coupon: String,
renewalRef: String,
upgradeRef: String
}
HTTP/1.1 200 OK Content-Type: text/jsv Content-Length: length { skuId: 0, code: String, customerId: 0, modifyingExistingSubscription: False, changingSubscriptions: False, switchingLicensingModels: False, replacesExistingQuantity: False, existingSubscriptionQuantity: 0, newSubscriptionQuantity: 0, unusedAmount: String, manualProrating: False, unusedDays: 0, quantity: 0, minQuantity: 0, maxQuantity: 0, subtotal: String, discountDescription: String, discountReceived: String, discount: String, total: String, expiryDate: String, renewalDate: String, isReferrer: False, responseStatus: { errorCode: String, message: String, stackTrace: String, errors: [ { errorCode: String, fieldName: String, message: String, meta: { String: String } } ], meta: { String: String } } }