Billing: GetPricing
GetPricing
Returns the product, rate plans and charges for the specified brand.
Note: the branding id for a partner can be set in the Partner Portal when logged in as a Sales account.
Authentication Methods
No authentication required
Input Parameter | Type | Description |
---|---|---|
BrandingID* | String | The branding id to get the pricing for Example: "NMD" |
*=required
CURL EXAMPLE
curl -v ' https://secure.nomadesk.com/nomadesk-billing/Api?Task=GetPricing&BrandingID=NMD'
RESPONSE
<Response>
<Header>
<Status>1</Status>
<Message>Success</Message>
<CreationDstamp>1342605037</CreationDstamp>
</Header>
<Body>
<Product>
<ID>4028e69736acda1e0136dc01a11933ca</ID>
<Name>Nomadesk</Name>
<Description>The Nomadesk Product</Description>
<RatePlans>
<RatePlan>
<ID>4028e69636ace03f0136dc0a7e724dc7</ID>
<Description>This is the rate plan used for standard online sales of Nomadesk monthly subscriptions</Description>
<Name>Nomadesk Monthly Subscription</Name>
<Type>Monthly</Type>
<BrandingID>NMD</BrandingID>
<Charges>
<Charge>
<ID>4028e69736acda1e0136dc0f76a74b3d</ID>
<Name>Price</Name>
<Description>Monthly Subscription Price: $10</Description>
<BillingPeriod>Month</BillingPeriod>
<ChargeModel>Flat Fee Pricing</ChargeModel>
<ChargeTiers>
<ChargeTier>
<ID>4028e69736acda1e0136dc0f76aa4b3e</ID>
<Currency>USD</Currency>
<Price>10</Price>
</ChargeTier>
<ChargeTier>
<ID>4028e69736acda1e0136dc0f76aa4b3f</ID>
<Currency>EUR</Currency>
<Price>7.5</Price>
</ChargeTier>
</ChargeTiers>
</Charge>
</Charges>
</RatePlan>
<RatePlan>
<ID>4028e69636ace03f0136dc1af8d4645a</ID>
<Description>This is the rate plan used for standard online sales of Nomadesk annual subscriptions.</Description>
<Name>Nomadesk Annual Subscription</Name>
<Type>Yearly</Type>
<BrandingID>NMD</BrandingID>
<Charges>
<Charge>
<ID>4028e69636ace03f0136dc1d0fd36467</ID>
<Name>Price</Name>
<Description>Annual Subscription Price: $120</Description>
<BillingPeriod>Annual</BillingPeriod>
<ChargeModel>Flat Fee Pricing</ChargeModel>
<ChargeTiers>
<ChargeTier>
<ID>4028e69636ace03f0136dc1d0fd66468</ID>
<Currency>USD</Currency>
<Price>120</Price>
</ChargeTier>
<ChargeTier>
<ID>4028e69636ace03f0136dc1d0fd66469</ID>
<Currency>EUR</Currency>
<Price>90</Price>
</ChargeTier>
</ChargeTiers>
</Charge>
<Charge>
<ID>4028e69636ace03f0136dc201ecf70fc</ID>
<Name>Prepay Discount</Name>
<Description>Annual Prepay Discount: 10%</Description>
<BillingPeriod>Annual</BillingPeriod>
<ChargeModel>Discount-Percentage</ChargeModel>
<ChargeTiers>
<ChargeTier>
<ID>4028e69636ace03f0136dc201ed070fd</ID>
<Currency>USD</Currency>
<Price>10</Price>
</ChargeTier>
<ChargeTier>
<ID>4028e69636ace03f0136dc201ed070fe</ID>
<Currency>EUR</Currency>
<Price>10</Price>
</ChargeTier>
</ChargeTiers>
</Charge>
</Charges>
</RatePlan>
</RatePlans>
</Product>
</Body>
</Response>