curl --request GET \
--url https://services.leadconnectorhq.com/store/customer-access-center/store/{funnelId} \
--header 'Authorization: Bearer <token>'{
"status": true,
"data": {
"name": "My Store",
"steps": [
{
"id": "step123",
"name": "Product Page",
"url": "/product",
"type": "store",
"sequence": 1,
"key": "step123"
}
]
},
"message": "Successfully created"
}The “Get Store Details” API allows to get store details.
curl --request GET \
--url https://services.leadconnectorhq.com/store/customer-access-center/store/{funnelId} \
--header 'Authorization: Bearer <token>'{
"status": true,
"data": {
"name": "My Store",
"steps": [
{
"id": "step123",
"name": "Product Page",
"url": "/product",
"type": "store",
"sequence": 1,
"key": "step123"
}
]
},
"message": "Successfully created"
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Was this page helpful?