Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 4 Next »

3.16.0

This Pricing object contains pricing information that is associated with either an account for account specific pricing or a tier for tier level pricing. 

  • It is assumed that account specific pricing is priced in local currency
  • It is assumed that tier specific pricing is priced in the local currency of the accounts the tier will be associated with

 

Account Object Formats

JSON Format
{
    "{$ProdNum}" : {
        "Price" : 0.0,
		"Delete" : false
    }
}

Account Object Properties

(info) Required properties are in Bold.

PropertyTypeDescription
{$ProdNum}stringThe property contains the actual product number who's price is to be set.
Deleteboolean

Optional property.

This property is used during a PUT request to remove specific items. This property will never be returned during a GET request.

Pricedecimal

Identifies the price associated with the product identified by ${ProdNum} field.

Example 

{
	"1001" : {
		"Price" : 29.99
	},
	"1002" : {
		"Price" : 19.99
	}
}

In the above example the price of the product identified by the product number 1001 is set to 29.99. 

  • No labels