Skip to main content

appInfo

Overview

Retrieve Store information (branding, URLs, general settings). The GraphQL query name is getAppInfo, but this page refers to the resource as Store.

Query

query GetAppInfo {
getAppInfo {
success
message
data {
_id
name
subdomain
logo { _id fileUrl }
description
url
generalSettings {
font { _id sources title }
palette {
_id
name
mainColor
subColor
footerColor
backgroundColor
backgroundImageUrl
}
country {
_id
name
image { image imageUrl }
code
continent
capital
active
deleted
phonekey
}
currency { _id title currencyCode currencySymbol }
}
}
}
}

Examples

curl -X POST \
https://subdomain.com \
-H "Content-Type: application/json" \
-H "Authorization: Bearer <TOKEN>" \
--data-binary @- << 'EOF'
{
"query": "query GetAppInfo { getAppInfo { success message data { _id name subdomain url } } }"
}
EOF

Notes

  • The GraphQL field is named getAppInfo; this page treats it as Store info for documentation clarity.
  • Reduce or expand selected fields according to your UI needs.