Last updated 4 months ago
LootLockerSDKManager.ListCatalogs((response) => { if(!response.success) { Debug.Log("error: " + response.errorData.message); Debug.Log("request ID: " + response.errorData.request_id); return; } });
To see what data gets returned, please refer to our .
LootLockerSDKManager.ListCatalogItems(catalogKey, 10, "", (response) => { if(!response.success) { Debug.Log("error: " + response.errorData.message); Debug.Log("request ID: " + response.errorData.request_id); return; } });
string walletID = ""; LootLockerCatalogItemAndQuantityPair[] items = { }; LootLockerSDKManager.LootLockerPurchaseCatalogItems(walletID, items, (response) => { if(!response.success) { Debug.Log("error: " + response.errorData.message); Debug.Log("request ID: " + response.errorData.request_id); return; } });