Skip to main content

Store

The Store resource contains general settings and information about a Tiendanube/Nuvemshop's store.

Properties

PropertyExplanation
idThe unique numeric identifier for the Store
nameList of the names of the Store, in every language supported by the store
descriptionList of the descriptions of the Store, in every language supported by the store
typeStore type. Examples are "clothing", "sports", "electronic"
emailStore owner's e-mail
logoStore logo URL, starting with // (or null if it has no logo)
contact_emailStore's contact e-mail
facebookStore's Facebook URL
twitterStore's Twitter URL
google_plusStore's G+ URL
instagramStore's Instagram URL
pinterestStore's Pinterest URL
blogStore's blog URL
addressStore's address
phoneStore's phone
whatsapp_phone_numberStore's contact phone
business_idBusiness identifier (different for each country) of the company who owns the store. Brazil options: number of CPF or CNPJ. Argentina options: DNI, CUIL or CUIT.
business_nameBusiness name of the company who owns the store
business_addressBusiness address of the company who owns the store
customer_accounts"optional" if the customer is allowed to checkout as guest. "mandatory" if not.
plan_nameName of the Tiendanube/Nuvemshop's plan the store is on
countryStore's country in ISO 3166-1 format
languagesStore available languages with its currency and whether or not is active
domainsList of store's domains
original_domainOriginal tiendanube.com or nuvemshop.com.br domain for the Store
current_themeStore's current theme
main_languageStore's main language
main_currencyStore's main currency in ISO 4217 format
admin_languageStore's admin language
has_multicdIndicate the Store has MultiCd Feature Enable. Boolean
created_atDate when the Store was created in ISO 8601 format

Endpoints

GET /store

Receive a single Store.

ParameterExplanation
fieldsComma-separated list of fields to include in the response

GET /store

HTTP/1.1 200 OK

{
"address": null,
"admin_language": "pt",
"blog": null,
"business_id": null,
"business_name": null,
"business_address": null,
"contact_email": "contact@pokestore.com",
"country": "BR",
"created_at": "2013-01-01T05:12:51-03:00",
"customer_accounts": "optional",
"description": {
"en": "",
"es": "",
"pt": ""
},
"domains": [
"www.pokestore.com",
"www.another.com"
],
"email": "owner@pokestore.com",
"facebook": "http://www.facebook.com/pokestore",
"google_plus": "http://plus.google.com/+pokestore",
"id": 1234,
"instagram": "http://www.instagram.com/pokestore",
"languages": {
"en": {
"currency" : "USD",
"active": true
},
"es": {
"currency" : "ARS",
"active": false
},
"pt": {
"currency" : "BRL",
"active": true
}
},
"logo": "//d26lpennugtm8s.cloudfront.net/stores/046/themes/common/logo-ff622335866ee56df3bceed2e9d41469.png",
"main_currency": "BRL",
"current_theme": "luxury",
"main_language": "pt",
"name": {
"en": "Poké Store",
"es": "Poké Tienda",
"pt": "Poké Loja"
},
"original_domain" : "pokeloja.nuvemshop.com.br",
"phone": null,
"whatsapp_phone_number": null,
"pinterest": "http://www.pinterest.com/pokestore",
"plan_name": "Business",
"type": null,
"twitter": "http://www.twitter.com/pokestore",
"has_multicd": false
}