Purchase & Checkout in Unity

Integrating Your Payment URL

Once you have requested and received your Payment URL from your web server API, you can now use the URL within the product purchasing flow within your Unit code base.

Example

Here is a pseudo-code mock up of getting your game to trigger the web browser kick-off through the Unity SDK. C#
string checkoutLink = YourClient.getPaymentUrlByProductId(sku);

BoltSDK.OpenCheckout(checkoutLink);