PLAY SDK Documentation
v0.12.0 (Obsolete)
v0.12.0 (Obsolete)
  • 🛠️ENVIRONMENT SETUP
    • Overview
    • PLAY Sample Package
  • 🖥️SDK Integration Guides
    • Getting Started
      • Unity
        • Tech Requirements
        • Step 1 - Import packages
        • Step 2 - Import credentials
        • Step 3 - Environments
        • Step 4 - Initialization
      • Unreal
        • Tech Requirements
        • Step 1 - Import packages
        • Step 2 - Configure credentials
        • Step 3 - Environments
        • Step 4 - Initialization
    • Authentication
      • Unity
      • Unreal
    • User Profile
      • Unity
      • Unreal
    • Virtual Items
      • Unity
      • Unreal
    • Inventory
      • Unity
      • Unreal
    • Store
      • Unity
      • Unreal
    • Currency (IAP)
      • Unity
      • Unreal
    • Achievements
      • Unity
      • Unreal
    • Game Progress
      • Unity
      • Unreal
    • Leaderboards
      • Unity
      • Unreal
    • Matchmaking
      • Unity
      • Unreal
    • Wallets
      • Unity
      • Unreal
    • Analytics
      • Unity
      • Unreal
    • Notifications
      • Unity
      • Unreal
    • Module Requests
  • 🎲Game Design Guides
    • Overview
    • User Authentication
    • User Profile
    • Game (Progression + Rewards)
    • Virtual Items
    • Currency (IAP)
    • Store
    • Inventory
    • Achievements
    • NFT Purchase Flow & Wallets
    • Limited-Time Offers
    • NFT Passes
  • 📌Links
    • PLAY Whitepaper
    • PLAY Postman API Doc
    • PLAY Dev Dashboard
    • PLAY Example Repository Dev
    • PLAY Example Repository Prod
    • Report an Issue
    • Discord dev-chat
    • Telegram Community Channel
    • Social Links
Powered by GitBook
On this page
  • Introduction
  • Get Store Offers
  • Buy Virtual Items and Store offers

Was this helpful?

Export as PDF
  1. SDK Integration Guides
  2. Store

Unreal

Unreal integration

Was this helpful?

Introduction

The users can buy Virtual Items either individually or in packs. After a virtual item is purchased it will be added to the user's inventory. You can use the to create new store offers and virtual items.

Each store offer can contain one or more virtual items to sell. Price info data is also part of the store offer. It is also possible to sell virtual items without creating store offers.

StoreOffer
  • id (string): Unique id or the store offer.

  • name (string): Name of the store offer.

  • description (string): Description of the virtual item.

  • appIds (List<string>): List of project id where your store offer can be accessed.

  • createdAt (long): Date and time of the store offer creation.

  • updatedAt (long): Date and time of the last update on the store offer.

  • createdBy (string): User ID of the creator of the store offer.

  • updatedBy (string): User ID of the last person who updated the store offer.

  • tags (List<string>): List of tags to filter the store offers.

  • time (TimeInfo): Contains the time infos for your store offer.

  • itemIds (List<string>): List of items available in your store offer

  • prices (List<PriceInfo>): List of prices defined for this store offer. Used to process transaction with the user's currencies.

  • properties (List<Property>): List of properties you can store in json format to retrieve with the store offer.

Get Store Offers

Buy Virtual Items and Store offers

🖥️
PLAY Dev Dashboard
LogoGet Store Offers posted by Car3manPLAY | blueprintUE | PasteBin For Unreal Engineblueprintue
LogoBuy Store Offer posted by Car3manPLAY | blueprintUE | PasteBin For Unreal Engineblueprintue
LogoBuy Virtual Item posted by Car3manPLAY | blueprintUE | PasteBin For Unreal Engineblueprintue