SDKs code references for Unity
Easily embed Xsolla services with this ready-to-use libraries for Unity applications and games
|
Static Public Member Functions | |
static void | GetCartItems (Action< Cart > onSuccess, Action< Error > onError, string cartId=null, string locale=null, string currency=null) |
Returns a list of items from the cart with the specified ID or from the cart of the current user. For each item, complete data is returned. More... | |
static void | FillCart (List< CartFillItem > items, Action onSuccess, Action< Error > onError, string cartId=null) |
Fills the cart with the specified ID or the cart of the current user with items. If there is already an item with the same SKU in the cart, the existing item position will be replaced by the passed value. More... | |
static void | UpdateItemInCart (string itemSku, int quantity, Action onSuccess, Action< Error > onError, string cartId=null) |
Updates the quantity of a previously added item in the cart with the specified ID or in the current user cart. If there is no item with the specified SKU in the cart, it will be added. More... | |
static void | RemoveItemFromCart (string itemSku, Action onSuccess, Action< Error > onError, string cartId=null) |
Removes the item from the cart with the specified ID or from the cart of the current user. More... | |
static void | ClearCart (Action onSuccess, Action< Error > onError, string cartId=null) |
Removes all items from the cart with the specified ID or from the cart of the current user. More... | |
static void | RedeemPromocode (string promocode, string cartId, Action< Cart > onSuccess, Action< Error > onError) |
Redeems a promo code. After activating the promo code, the user gets free items and/or the price of the cart is reduced. More... | |
static void | GetPromocodeReward (string promocode, Action< PromocodeReward > onSuccess, Action< Error > onError) |
Returns a list of items that can be credited to the user when the promo code is activated. Allows users to choose from several available items. More... | |
static void | RemovePromocodeFromCart (string cartId, Action< RemovePromocodeFromCartResult > onSuccess, Action< Error > onError=null) |
Removes a promo code from a cart. After the promo code is removed, the total price of all items in the cart will be recalculated without bonuses and discounts provided by a promo code. More... | |
static void | CreateOrder (Action< OrderData > onSuccess, Action< Error > onError, string cartId=null, PurchaseParams purchaseParams=null, Dictionary< string, string > customHeaders=null) |
Creates an order with items from the cart with the specified ID. Returns the payment token and order ID. The created order will get a new order status. More... | |
static void | CreateOrderWithFreeCart (Action< OrderId > onSuccess, Action< Error > onError, string cartId=null, PurchaseParams purchaseParams=null, Dictionary< string, string > customHeaders=null) |
Create order with particular free cart. The created order will get a done order status. More... | |
static void | Purchase (Action< OrderStatus > onSuccess, Action< Error > onError, string cartId=null, Action< BrowserCloseInfo > onBrowseClosed=null, PurchaseParams purchaseParams=null, Dictionary< string, string > customHeaders=null, PlatformSpecificAppearance platformSpecificAppearance=null) |
Launches purchase process for the cart with the specified ID or for the cart of the current user. This method encapsulates methods for creating an order, opening a payment UI, and tracking the order status. More... | |
static void | PurchaseFreeCart (Action< OrderStatus > onSuccess, Action< Error > onError, string cartId=null, PurchaseParams purchaseParams=null, Dictionary< string, string > customHeaders=null) |
Launches purchase process for the free cart with the specified ID or for the free cart of the current user. This method encapsulates methods for creating an order and tracking the order status. More... | |
|
inlinestatic |
Removes all items from the cart with the specified ID or from the cart of the current user.
onSuccess | Called after successful cart clearing. |
onError | Called after the request resulted with an error. |
cartId | Unique cart identifier. |
|
inlinestatic |
Creates an order with items from the cart with the specified ID. Returns the payment token and order ID. The created order will get a new
order status.
onSuccess | Called after the order was successfully created. |
onError | Called after the request resulted with an error. |
cartId | Unique cart identifier. |
purchaseParams | Purchase parameters such as country , locale , currency , and quantity . |
customHeaders | Custom HTTP request headers. |
|
inlinestatic |
Create order with particular free cart. The created order will get a done
order status.
onSuccess | Called after server response. |
onError | Called after the request resulted with an error. |
cartId | Unique cart identifier. |
purchaseParams | Purchase parameters such as country , locale , currency , and quantity . |
customHeaders | Custom HTTP request headers. |
|
inlinestatic |
Fills the cart with the specified ID or the cart of the current user with items. If there is already an item with the same SKU in the cart, the existing item position will be replaced by the passed value.
items | Item for filling the cart. If there is already an item with the same SKU in the cart, the existing item position will be replaced by the passed value. |
onSuccess | Called after cart is successfully filled. |
onError | Called after the request resulted with an error. |
cartId | Unique cart identifier. |
|
inlinestatic |
Returns a list of items from the cart with the specified ID or from the cart of the current user. For each item, complete data is returned.
onSuccess | Called after local cache of cart items was successfully updated. |
onError | Called after the request resulted with an error. |
cartId | Unique cart identifier. |
locale | Defines localization of item's text fields. Two-letter lowercase language code. Leave empty to use the default value. |
currency | The currency in which prices are displayed (USD by default). Three-letter currency code per ISO 4217. Check the documentation for detailed information about currencies supported by Xsolla. |
|
inlinestatic |
Returns a list of items that can be credited to the user when the promo code is activated. Allows users to choose from several available items.
promocode | Unique code of promocode. Contains letters and numbers. |
onSuccess | Called after successfully receiving promocode rewards. |
onError | Called after the request resulted with an error. |
|
inlinestatic |
Launches purchase process for the cart with the specified ID or for the cart of the current user. This method encapsulates methods for creating an order, opening a payment UI, and tracking the order status.
onSuccess | Called after the order transitions to the 'done' status. |
onError | Called after the request resulted with an error. |
cartId | Unique cart identifier. |
onBrowseClosed | Called after the browser is closed. The event is tracked only when the payment UI is opened in the built-in browser. External browser events can't be tracked. |
purchaseParams | Purchase parameters such as country , locale , and currency . |
customHeaders | Custom HTTP request headers. |
platformSpecificAppearance | Additional settings of payment UI appearance for different platforms. |
|
inlinestatic |
Launches purchase process for the free cart with the specified ID or for the free cart of the current user. This method encapsulates methods for creating an order and tracking the order status.
onSuccess | Called after the order transitions to the 'done' status. |
onError | Called after the request resulted with an error. |
cartId | Unique cart identifier. |
purchaseParams | Purchase parameters such as country , locale , and currency . |
customHeaders | Custom HTTP request headers. |
|
inlinestatic |
Redeems a promo code. After activating the promo code, the user gets free items and/or the price of the cart is reduced.
promocode | Unique code of promocode. Contains letters and numbers. |
cartId | Unique cart identifier. The current user cart will be updated if empty. |
onSuccess | Called after successful promocode redemption. |
onError | Called after the request resulted with an error. |
|
inlinestatic |
Removes the item from the cart with the specified ID or from the cart of the current user.
itemSku | Item SKU to delete. |
onSuccess | Called after successfully removing an item from the cart. |
onError | Called after the request resulted with an error. |
cartId | Unique cart identifier. |
|
inlinestatic |
Removes a promo code from a cart. After the promo code is removed, the total price of all items in the cart will be recalculated without bonuses and discounts provided by a promo code.
cartId | Cart ID. The current user cart will be updated if empty. |
onSuccess | Called after the promo code has been successful removed from cart. |
onError | Called after the request resulted with an error. |
|
inlinestatic |
Updates the quantity of a previously added item in the cart with the specified ID or in the current user cart. If there is no item with the specified SKU in the cart, it will be added.
itemSku | SKU of item for purchase. |
quantity | Quantity of purchased items. |
onSuccess | Called after successfully adding a new item to the cart. |
onError | Called after the request resulted with an error. |
cartId | Unique cart identifier. |