List Catalogs
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 Reference Documentation.
.DoTfE0op_Z2cFFm9.webp)
List Catalog Items
LootLockerSDKManager.ListCatalogItems(catalogKey, 10, "", (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 Reference Documentation.
.C31EmUqm_1rqUjH.webp)
Buy Catalog Items
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; }
});To see what data gets returned, please refer to our Reference Documentation.
.BpzKGEra_Z1EHCvB.webp)
