Update shop details
PATCH/openapi/2025-06/shop/:shop_id
The Update Shop API allows developers to modify specific attributes of a shop using its unique identifier. This endpoint supports updating various fields based on the user’s request.
Request
Path Parameters
Specifies which shop is to be updated
- application/json
- Body
- Example
Bodyrequired
shop objectrequired
Shop
Email of the shop
{
"shop": {
"customer_email": "string"
}
}
Responses
- 200
OK
- application/json
- Schema
- Example
Schema
error code
error message
data object
Account of the shop
Address1 of the shop
Address2 of the shop
City of the shop
Country code of the shop
Created time of the shop
Currency of the shop
Customer email of the shop
Domain of the shop
Email of the shop
icon object
Icon of the shop
Alt of the icon
Path of the icon
Src of the icon
subscription object
Subscription status of the shop
The type of the subscription
ID of the shop
Name of the shop
Phone of the shop
Primary locale of the shop
Province of the shop
Root URL of the shop
Owner of the shop
State or province of the shop
The system domain of the shop
The timezone of the shop
The updated time of the shop
The zip of the shop
{
"code": "string",
"message": "string",
"data": {
"account": "string",
"address1": "string",
"address2": "string",
"city": "string",
"country_code": "string",
"created_at": "string",
"currency": "string",
"customer_email": "string",
"domain": "string",
"email": "string",
"icon": {
"alt": "string",
"path": "string",
"src": "string"
},
"subscription": {
"type": "string"
},
"id": 0,
"name": "string",
"phone": "string",
"primary_locale": "string",
"province_code": "string",
"root_url": "string",
"shop_owner": "string",
"state": "string",
"system_domain": "string",
"timezone": "string",
"updated_at": "string",
"zip": "string"
}
}