Mobile Funnels
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
Parameters | Details | Description |
---|---|---|
name | Required String | Funnel name |
steps | Optional Integer | Total steps count |
status | Optional String | 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}
Parameters | Details | Description |
---|---|---|
name | Optional String | Update funnel name |
steps | Optional Integer | Update steps count |
status | Optional String | 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}'