latestOpenAPI 3.1.12026-08-108026304.2 KB

7b222e8ec91c

Stores

Update store information

Updates the store configuration

post/v1/stores/{store_id}

Response

Successfully updated store information

objectstring
idstring

A unique identifier for the store

currency'gbp' | 'usd' | 'eur' | 'sgd' | 'aud' | 'brl' | 'cad' | 'czk' | 'dkk' | 'hkd' | 'huf' | 'ils' | 'jpy' | 'myr' | 'mxn' | 'nok' | 'nzd' | 'php' | 'pln' | 'rub' | 'sek' | 'chf' | 'twd' | 'thb' | 'try'

The currency code used by the store

namestring

Name of the store

payment_methodsstring[]

Array of payment method IDs associated with the store

productsstring[]

Array of product IDs that are sold in the store

Example response

{
  "object": "store",
  "id": "st_18",
  "currency": "EUR",
  "name": "Example store name",
  "payment_methods": [
    "pm_7301",
    "pm_7302"
  ],
  "products": [
    "pr_105676"
  ]
}