Insource Systems
  • Intro
  • Change Log
  • API Reference
  • Insource Bot
    • Getting Started
    • Commands
      • Settings
      • Moderation
      • Info
      • Account
      • InStore
  • InStore
    • Getting Started
      • Linking Your Account
      • Create Your Store
      • Create a Product
    • Framework
      • RemoteEvent
        • Alert
        • LaunchProduct
      • RemoteFunction
        • GetCurrentUser
        • GetProductById
        • GetProducts
        • RequestPromptPurchase
      • Resources
        • Configuration
        • Product
        • Theme
        • User
      • Utils
        • TeleportToAccount
        • TimeStringToEpoch
    • API Resources
      • License
      • Product
      • Store
  • API Resources
    • User
Powered by GitBook
On this page

Was this helpful?

  1. InStore
  2. Framework
  3. Resources

Product

An InStore Product object.

PreviousConfigurationNextTheme

Last updated 1 year ago

Was this helpful?

This framework modifies the return of the InStore Product object. See for the base data.

Product Object

Product Structure

Field
Type
Description

ProductId

string

Name

string

Description

?string

Category

?string

ParentProductId

?string

MaxPurchases

integer

MaxUserPurchases

integer

IconImageUrl

string

the asset link to the developer product image

PriceInRobux

integer

the price of the developer product

Owned

boolean

if the current user owns a license for the product

Example Product

{
  ProductId = "619608638377562112",
  Name = "My First Product",
  MaxPurchases = -1,
  MaxUserPurchases = 1,
  IconImageUrl = 'rbxassetid://12345678',
  PriceInRobux = 0,
  Owned = false,
}

.product_id

.name

.description

.category

.parent_product_id

.max_purchases

.max_user_purchases

here
Product
Product
Product
Product
Product
Product
Product