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. API Resources

Store

Stores are for the InStore service. Each store is owned by a user and can have products that are available for sale.

PreviousProductNextUser

Last updated 1 year ago

Was this helpful?

Store Object

Store Structure

Field
Type
Description
OAuth2 Scope

store_id

snowflake

the store's id

identify

license_id

?snowflake

the id of the license assigned to the store

license

user_id

snowflake

the id of the that owns the store

identify

discord_id

?string

the id of the discord server connected to the store

identify

roblox_id

?string

the id of the roblox place connected to the store

identify

suspended_until

?ISO8601

the timestamp this store is suspended until

internal

suspended_reason

?string

the reason this store is suspended

internal

Example Store

{
  "store_id": "619605362454167552",
  "user_id": "619604822684995584",
  "discord_id": "794105654410870794",
  "roblox_id": "17259422149"
}
user