curl --request GET \
--url https://app.tagadapay.com/api/public/v1/stores/{storeId}/funnels \
--header 'Authorization: Bearer <token>'{
"funnels": [
{
"id": "funnelv2_123",
"name": "Default Funnel",
"status": "active",
"stepsCount": 3,
"isDefault": true
}
]
}Retrieve all funnels for a specific store
curl --request GET \
--url https://app.tagadapay.com/api/public/v1/stores/{storeId}/funnels \
--header 'Authorization: Bearer <token>'{
"funnels": [
{
"id": "funnelv2_123",
"name": "Default Funnel",
"status": "active",
"stepsCount": 3,
"isDefault": true
}
]
}