StorefrontStoreDto
Represents a store entity within the storefront system.
creator_currencystringRequired
The three-letter ISO currency code signifying the main currency of the store.
currencystringRequired
The three-letter ISO currency code used for pricing in this store.
If using the Adaptive Currency feature, this will be updated to reflect customer's local currency
(based on passed in IP / country headers).
gamestringRequired
The game of the store. Equivalent to the `platform` for backwards compatibility.
idFlakeIdRequired
live_modebooleanRequired
Indicates whether the store is in live mode (true) or test mode (false).
namestringRequired
The display name of the store shown to customers.
platformstringRequired
The platform or the game of the store.
slugstringRequired
The URL-friendly identifier for the store, used in store URLs.
created_atstringOptional
The date and time when the store was created.
descriptionstringOptional
A detailed description of the store. Only present for some platform types.
integration_typestringOptional
The type of integration this store uses with external systems.
logo_square_urlstringOptional
The URL to the store's square logo image.
logo_urlstringOptional
The URL to the store's main logo image.
support_emailstringOptional
The email address customers can use to contact store support.
support_urlstringOptional
The URL of the store's support page.
updated_atstringOptional
The date and time when the store was last updated.
website_urlstringOptional
The URL of the store's main website, if not using Hosted Webstores.
Example
{
"creator_currency": "usd",
"currency": "eur",
"game": "string",
"id": "411486491630370816",
"live_mode": true,
"name": "m0uka's awesome store",
"platform": "rust",
"slug": "m0ukas-awesome-store",
"description": "string",
"website_url": "string",
"support_email": "[email protected]",
"support_url": "string",
"integration_type": "string",
"logo_url": "string",
"logo_square_url": "string",
"created_at": "2024-01-01T00:00:00Z",
"updated_at": "2024-01-01T00:00:00Z"
}