Mobile Trichter

GET https://qreq.com/api/lead-funnel-blocks
curl --request GET \
--url 'https://qreq.com/api/lead-funnel-blocks' \
--header 'Authorization: Bearer {api_key}'
{ "data": [ { "id": 1, "name": "Onboarding Funnel", "steps": 5, "completed": 3, "status": "active", "datetime": "2025-01-15 10:22:00" } ], "meta": { "page": 1, "results_per_page": 25, "total": 1, "total_pages": 1 }, "links": { "first": "https://qreq.com/api/lead-funnel-blocks?page=1", "last": "https://qreq.com/api/lead-funnel-blocks?page=1", "next": null, "prev": null, "self": "https://qreq.com/api/lead-funnel-blocks?page=1" } }
GET https://qreq.com/api/lead-funnel-blocks/{funnel_id}
curl --request GET \
--url 'https://qreq.com/api/lead-funnel-blocks/{funnel_id}' \
--header 'Authorization: Bearer {api_key}'
{ "data": { "id": 1, "name": "Onboarding Funnel", "steps": 5, "completed": 3, "status": "active", "datetime": "2025-01-15 10:22:00" } }
POST https://qreq.com/api/lead-funnel-blocks
Parameter Einzelheiten Beschreibung
name Erforderlich Zeichenfolge Funnel name
steps Optional Ganzzahl Total steps count
status Optional Zeichenfolge active / inactive
curl --request POST \
--url 'https://qreq.com/api/lead-funnel-blocks' \
--header 'Authorization: Bearer {api_key}' \
--header 'Content-Type: multipart/form-data' \
--form 'name=Onboarding Funnel' \
--form 'steps=5' \
--form 'status=active'
POST https://qreq.com/api/lead-funnel-blocks/{funnel_id}
Parameter Einzelheiten Beschreibung
name Optional Zeichenfolge Update funnel name
steps Optional Ganzzahl Update steps count
status Optional Zeichenfolge active / inactive
DELETE https://qreq.com/api/lead-funnel-blocks/{funnel_id}
curl --request DELETE \
--url 'https://qreq.com/api/lead-funnel-blocks/{funnel_id}' \
--header 'Authorization: Bearer {api_key}'