ποΈ Commerce
- Catalog
- Carts
- Coupons & Promotions
- Orders
- Shipping
- Payments
- Subscriptions
π Customers
- Auth
- Customers
- KYC
ποΈ Engagement & Retention
- Campaigns
- Analytics
π§° Utilities
- Common
πͺ Store Config
Webhooks
- Webhook Events
πͺ Store Config
Retrieve store config
Retrieve store config detail
GET
/
store
/
config
Copy
curl --request GET \
--url https://staging.api.commercengine.io/api/v1/{store_id}/storefront/store/config
Copy
{
"message": "<string>",
"success": true,
"content": {
"store_config": {
"is_kyc_enabled": false,
"is_customer_group_enabled": false,
"brand": {
"name": "<string>",
"logo_url": "<string>",
"social_media_links": {}
},
"currency": {
"name": "Indian Rupee",
"code": "INR",
"symbol": "βΉ"
},
"customer_groups": [
{
"id": "<string>",
"name": "<string>",
"description": "<string>",
"is_default": true,
"active": true
}
],
"kyc_documents": [
{
"id": "<string>",
"document_type": "gst",
"title": "<string>",
"description": "<string>",
"active": true,
"is_mandatory": true,
"is_attachment_required": true,
"verification_type": "auto"
}
],
"measurement": {
"weight": "gm",
"dimension": "cm"
},
"terms_of_service": {
"id": "<string>",
"name": "<string>",
"content_title": "<string>",
"content_type": "html",
"content": "<string>"
},
"refund_policy": {
"id": "<string>",
"name": "<string>",
"content_title": "<string>",
"content_type": "html",
"content": "<string>"
}
}
}
}
Response
200
application/json
OK
The response is of type object
.
Copy
curl --request GET \
--url https://staging.api.commercengine.io/api/v1/{store_id}/storefront/store/config
Copy
{
"message": "<string>",
"success": true,
"content": {
"store_config": {
"is_kyc_enabled": false,
"is_customer_group_enabled": false,
"brand": {
"name": "<string>",
"logo_url": "<string>",
"social_media_links": {}
},
"currency": {
"name": "Indian Rupee",
"code": "INR",
"symbol": "βΉ"
},
"customer_groups": [
{
"id": "<string>",
"name": "<string>",
"description": "<string>",
"is_default": true,
"active": true
}
],
"kyc_documents": [
{
"id": "<string>",
"document_type": "gst",
"title": "<string>",
"description": "<string>",
"active": true,
"is_mandatory": true,
"is_attachment_required": true,
"verification_type": "auto"
}
],
"measurement": {
"weight": "gm",
"dimension": "cm"
},
"terms_of_service": {
"id": "<string>",
"name": "<string>",
"content_title": "<string>",
"content_type": "html",
"content": "<string>"
},
"refund_policy": {
"id": "<string>",
"name": "<string>",
"content_title": "<string>",
"content_type": "html",
"content": "<string>"
}
}
}
}
Assistant
Responses are generated using AI and may contain mistakes.