Skip to main content
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>'
{
  "status": true,
  "data": {
    "name": "My Store",
    "steps": [
      {
        "id": "step123",
        "name": "Product Page",
        "url": "/product",
        "type": "store",
        "sequence": 1,
        "key": "step123"
      }
    ]
  },
  "message": "Successfully created"
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Response

Successful response

status
boolean
required

Status of api action

Example:

true

data
object
required
message
string

Success message

Example:

"Successfully created"

Last modified on March 4, 2026