Bio-Visitenkarte
GET
https://qreq.com/api/bio-business-card
curl --request GET \
--url 'https://qreq.com/api/bio-business-card' \
--header 'Authorization: Bearer {api_key}'
{
"data": [
{
"id": 570,
"user_id": 7600,
"link_id": 153,
"type": "header1",
"name": null,
"settings": {
"name": "header new",
"position": "top",
"image": "12c09ab7c9f615941d8cc592aa971dd3.png",
"image_alt": null,
"open_in_new_tab": false,
"display_continents": [],
"display_countries": [],
"display_cities": [],
"display_devices": [],
"display_languages": [],
"display_operating_systems": [],
"display_browsers": []
},
"order": 0,
"datetime": "2025-10-24 11:45:52",
"last_datetime": null
}
],
"meta": {
"page": 1,
"total_pages": 1,
"results_per_page": 100,
"total_results": 1
},
"links": {
"first": "https://qreq.com/api/bio-business-card?&page=1",
"last": "https://qreq.com/api/bio-business-card?&page=1",
"next": null,
"prev": null,
"self": "https://qreq.com/api/bio-business-card?&page=1"
}
}
GET
https://qreq.com/api/bio-business-card/{bio_link_block_id}
curl --request GET \ --url 'https://qreq.com/api/bio-business-card/{bio_link_block_id}' \ --header 'Authorization: Bearer {api_key}'
{
"data": {
"id": 570,
"user_id": 7600,
"link_id": 153,
"type": "header1",
"name": null,
"settings": {
"name": "header new",
"position": "top",
"image": "12c09ab7c9f615941d8cc592aa971dd3.png",
"image_alt": null,
"open_in_new_tab": false,
"display_continents": [],
"display_countries": [],
"display_cities": [],
"display_devices": [],
"display_languages": [],
"display_operating_systems": [],
"display_browsers": []
},
"order": 0,
"datetime": "2025-10-24 11:45:52",
"last_datetime": null
}
}
POST
https://qreq.com/api/bio-business-card
| 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/bio-business-card' \ --header 'Authorization: Bearer {api_key}' \ --header 'Content-Type: multipart/form-data' \ --form 'name=Test Block' \ --form 'steps=5' \ --form 'status=active'
POST
https://qreq.com/api/bio-business-card/{bio_link_block_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/bio-business-card/{bio_link_block_id}
curl --request DELETE \ --url 'https://qreq.com/api/bio-business-card/{bio_link_block_id}' \ --header 'Authorization: Bearer {api_key}'