Get Store Details
The “Get Store Details” API allows to get store details.
GET
/
store
/
customer-access-center
/
store
/
{funnelId}
Get Store Details
curl --request GET \
--url https://services.leadconnectorhq.com/store/customer-access-center/store/{funnelId} \
--header 'Authorization: Bearer <token>'const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://services.leadconnectorhq.com/store/customer-access-center/store/{funnelId}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://services.leadconnectorhq.com/store/customer-access-center/store/{funnelId}"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text){
"status": true,
"data": {
"name": "My Store",
"steps": [
{
"id": "step123",
"name": "Product Page",
"url": "/product",
"type": "store",
"sequence": 1,
"key": "step123"
}
]
},
"message": "Successfully created"
}{
"statusCode": 400,
"message": "Bad Request"
}{
"statusCode": 401,
"message": "Invalid token: access token is invalid",
"error": "Unauthorized"
}{
"statusCode": 422,
"message": [
"Unprocessable Entity"
],
"error": "Unprocessable Entity"
}Authorizations
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Last modified on March 8, 2026
Was this page helpful?
Get Store Details
curl --request GET \
--url https://services.leadconnectorhq.com/store/customer-access-center/store/{funnelId} \
--header 'Authorization: Bearer <token>'const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://services.leadconnectorhq.com/store/customer-access-center/store/{funnelId}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://services.leadconnectorhq.com/store/customer-access-center/store/{funnelId}"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text){
"status": true,
"data": {
"name": "My Store",
"steps": [
{
"id": "step123",
"name": "Product Page",
"url": "/product",
"type": "store",
"sequence": 1,
"key": "step123"
}
]
},
"message": "Successfully created"
}{
"statusCode": 400,
"message": "Bad Request"
}{
"statusCode": 401,
"message": "Invalid token: access token is invalid",
"error": "Unauthorized"
}{
"statusCode": 422,
"message": [
"Unprocessable Entity"
],
"error": "Unprocessable Entity"
}