For developers: Query discounts
Query a discount by a parameter
To query a single discount you must perform the following:
- Get the orders manager.
Get an instance of the OrdersManager object.
- Get the discount.
To get the discount, you must either call the GetDiscount method of the manager and pass the ID of the discount as an argument, or call the GetDiscounts method of the manager and filter the query by the desired criteria (e.g. title).
Use the following code samples to query a discount by ID and title:
Query a discount by ID
Query a discount by title
Query all discounts
To query all discounts, you must perform the following:
- Get an instance of the manager.
Get an instance of the OrdersManager object.
- Get the discounts.
To get the discounts, you must call the GetDiscounts method of the manager.
Use the following code sample: