/
Objects Pricing Object

Objects Pricing Object

3.16.0

The 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


Pricing Object Formats

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

Pricing 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.

Pricing Logic

When calculating the pricing:

  • If an account-specific price is found, that price will be used as the base price.
  • If no account-specific pricing exists, the API will then check for tier-specific pricing (if the account is associated with a pricing tier); if a tier-specific price is found, that price will be used as the base price.
  • If no tier-specific pricing exists, the API will then check for price list pricing (if the supplied service area has a price list).
  • If no price-list exists, the retail price will be used as the base price.

Related content

Price List Object
Price List Object
More like this
Price List Query Object
Price List Query Object
More like this
Tier Pricing REST API
Tier Pricing REST API
More like this
Price List REST API
Price List REST API
More like this
Account Pricing REST API
Account Pricing REST API
More like this
Copy Price List Object
Copy Price List Object
More like this