Shop update
Triggered when shop information is updated.
Requires the shop access scope. Minimum supported version: 202007.
Request headers
The event that triggered this delivery, e.g. orders/create
orders/createBase64-encoded HMAC-SHA256 signature of the request body, generated with your app's Client Secret. Use it to verify the request comes from Shoplazza
The domain of the store that generated the event
example.myshoplaza.comThe API version used to serialize the payload
2025-06Deduplication ID for this delivery. It stays the same across retries of the same event—use it for idempotency
Request body
- Schema
- Example (auto)
shop object
idstringShop ID
store_idstringStore ID
namestringName
company_namestringCompany name
urlstringThe full URL of the store
emailstringEmail address
service_emailstringCustomer service email address
financial_emailstringFinance email address
phonestringPhone number
phone_areastringPhone area
phone_area_codestringArea code of the store's contact phone
phone_regionstringRegion the phone number belongs to
addressstringPrimary address line
citystringCity
province_codestringProvince code
country_codestringCountry code (e.g., CN)
zipstringZIP code
currencystringCurrency code
money_formatstringCurrency format template
symbolstringThe store's currency symbol. Returns nil if not set
symbol_leftstringCurrency symbol displayed to the left of the amount
symbol_rightstringCurrency symbol displayed to the right of the amount
localestringThe locale (language) published for the store
time_zonestringTime zone
hourintegerTime zone offset in hours
has_to_sqsbooleanInternal flag; not intended for app use
created_atstringCreation time, in ISO-8601 format
updated_atstringLast update time, in ISO-8601 format
icon object
Store icon
srcstringIcon source URL
pathstringIcon path
altstringAlternative text for the icon
{
"shop": {
"id": "string",
"store_id": "string",
"name": "string",
"company_name": "string",
"url": "string",
"email": "string",
"service_email": "string",
"financial_email": "string",
"phone": "string",
"phone_area": "string",
"phone_area_code": "string",
"phone_region": "string",
"address": "string",
"city": "string",
"province_code": "string",
"country_code": "string",
"zip": "string",
"currency": "string",
"money_format": "string",
"symbol": "string",
"symbol_left": "string",
"symbol_right": "string",
"locale": "string",
"time_zone": "string",
"hour": 0,
"has_to_sqs": true,
"created_at": "string",
"updated_at": "string",
"icon": {
"src": "string",
"path": "string",
"alt": "string"
}
}
}