For AI agents: a documentation index is available at the root level at /llms.txt and /llms-full.txt. Append /llms.txt to any URL for a page-level index, or .md for the markdown version of any page.
Dev Portal
DocsAPI ReferenceLearnCommunityChangelog
DocsAPI ReferenceLearnCommunityChangelog
    • About Our APIs
  • REST
    • Overview
  • GraphQL
    • Overview
      • Playground
          • QUERYcompanyRoles
          • QUERYcompanyRole
          • QUERYcompanyPermissions
          • QUERYaccountSettings
          • QUERYcustomerAccountSettings
          • QUERYinvoices
          • QUERYinvoice
          • QUERYinvoiceStats
          • QUERYinvoiceCustomerInformation
          • QUERYinvoicePaymentModules
          • QUERYinvoiceBcOrderAllowMethods
          • QUERYinvoicePaymentBcCart
          • QUERYinvoicePaymentFees
          • QUERYreceipts
          • QUERYreceipt
          • QUERYallReceiptLines
          • QUERYreceiptLine
          • QUERYreceiptLines
          • QUERYorder
          • QUERYallOrders
          • QUERYorderProducts
          • QUERYorderedProducts
          • QUERYcustomerOrders
          • QUERYcustomerOrder
          • QUERYcreatedByUser
          • QUERYshoppingLists
          • QUERYshoppingList
          • QUERYshoppingListsIdName
          • QUERYcustomerShoppingLists
          • QUERYcustomerShoppingList
          • QUERYcustomerShoppingListsIdName
          • QUERYcompanyExtraFields
          • QUERYuserCompany
          • QUERYcompanyValidateEmail
          • QUERYcompanyUserInfo
          • QUERYaccountFormFields
          • QUERYcompanyCreditConfig
          • QUERYcompanyPaymentTerms
          • QUERYcompanySubsidiaries
          • QUERYsuperAdminCompanies
          • QUERYsuperAdminMasquerading
          • QUERYquotes
          • QUERYcustomerQuotes
          • QUERYquote
          • QUERYquoteUserStoreInfo
          • QUERYquoteConfig
          • QUERYquoteExtraFieldsConfig
          • QUERYusers
          • QUERYuser
          • QUERYuserEmailCheck
          • QUERYcustomerEmailCheck
          • QUERYuserExtraFields
          • QUERYcurrentUser
          • QUERYcustomerInfo
          • QUERYuserLoginState
          • QUERYuserMasqueradingCompany
          • QUERYorderStatuses
          • QUERYbcOrderStatuses
          • QUERYcurrencies
          • QUERYautoLoader
          • QUERYstoreLimitations
          • QUERYstoreBasicInfo
          • QUERYstorefrontScript
          • QUERYstorefrontDefaultLanguage
          • QUERYstorefrontProductSettings
          • QUERYstorefrontSettings
          • QUERYstoreConfigSwitchStatus
          • QUERYstoreCheckoutConfig
          • QUERYstorefrontConfig
          • QUERYstorefrontConfigs
          • QUERYproductVariantsInfo
          • QUERYvariantSku
          • QUERYproductsInventory
          • QUERYproductsLoad
          • QUERYproductsSearch
          • QUERYtaxZoneRates
          • QUERYproductPurchasable
          • QUERYvalidateProduct
          • QUERYvalidateProducts
          • QUERYpriceProducts
          • QUERYaddresses
          • QUERYaddress
          • QUERYcountries
          • QUERYdefaultShippingAddress
          • QUERYdefaultBillingAddress
          • QUERYcustomerAddresses
          • QUERYcustomerAddress
          • QUERYaddressConfig
          • QUERYaddressExtraFields
  • MCP
    • Overview
Dev Portal
LogoLogo
GraphQLB2BQueries

storeBasicInfo

Example Query
1query ExampleQuery($storeHash: String, $bcChannelId: Int) {
2 storeBasicInfo(storeHash: $storeHash, bcChannelId: $bcChannelId) {
3 storeName
4 storeAddress
5 storeCountry
6 storeLogo
7 storeUrl
8 storeSites {
9 channelId
10 urls
11 iconUrl
12 isEnabled
13 b2bEnabled
14 b3ChannelId
15 channelLogo
16 type
17 platform
18 translationVersion
19 }
20 timeFormat {
21 display
22 export
23 extendedDisplay
24 offset
25 }
26 multiStorefrontEnabled
27 backorderEnabled
28 }
29}
Variables
1{
2 "storeHash": "example",
3 "bcChannelId": 0
4}
Example response
1{
2 "data": {
3 "storeBasicInfo": {
4 "storeName": "example",
5 "storeAddress": "example",
6 "storeCountry": "example",
7 "storeLogo": "example",
8 "storeUrl": "example",
9 "storeSites": [
10 {
11 "channelId": 0,
12 "urls": [
13 "example"
14 ],
15 "iconUrl": "example",
16 "isEnabled": true,
17 "b2bEnabled": true,
18 "b3ChannelId": 0,
19 "channelLogo": "example",
20 "type": "example",
21 "platform": "example",
22 "translationVersion": 0
23 }
24 ],
25 "timeFormat": {
26 "display": "example",
27 "export": "example",
28 "extendedDisplay": "example",
29 "offset": 0
30 },
31 "multiStorefrontEnabled": true,
32 "backorderEnabled": true
33 }
34 }
35}
Basic information about the store. Doesn't require a Token.
Was this page helpful?
Previous

storeLimitations

Next

storefrontScript

Built with

Arguments

storeHashStringRequired
The store hash. This field is required.
bcChannelIdIntegerOptional
The BC channel ID.

Returns

an optional StoreBasicInfoType
storeNameString
storeAddressString
storeCountryString
storeLogoString
storeUrlString
storeSiteslist of optional StoreSitesType
The store sites of store
timeFormatStoreTimeFormatType
multiStorefrontEnabledBoolean
Whether multi storefront is enabled or not
backorderEnabledBoolean
Whether backorder is enabled or not