Create Store
OAuthScope
ZohoCommerce.sites.CREATE
HTTP Request
POST https://commerce.zoho.com/zs-site/api/v1/sites
Headers
Header | Values |
Authorization | Zoho-oauthtoken {{ your_auth_token }} |
Body Parameters
Parameters | Description |
site_title* | String: Title of the store to be created. |
template_id | long: Template ID of the store to be created. Allowed values: 2000026906555, 2000026906861, 2000026982023, 2000026982329, 2000026982635, 2000026982941, 2000026994247 |
org_id | long: The id of the finance organization. |
industry_type* | String: The type of industry the store falls under. Click here for allowed values. |
business_country | String: The country in which the business is based at. Click here for allowed values. |
time_zone* | String: The timezone of the store. Click here for allowed values. |
currency_code | String: The base currency of the store. Click here for allowed values. |
business_state | String: The state in which the business is based at. |
phone | String*: Phone number of the store. |
Request Example
Copiedcurl -X POST "https://commerce.zoho.com/zs-site/api/v1/sites"
-H "Authorization: Zoho-oauthtoken ***"
-d '{
"template_id":"p/2000026982023",
"site_title":"test store",
"industry_type":"Consulting",
"business_country":"IN",
"currency_code":"INR",
"time_zone":"Asia/Calcutta",
"business_state":"Tamil Nadu"
}'