Installa la nostra app 🪄 Fai clic sull’icona in alto a destra nella barra degli indirizzi.

Pagine di ingresso

GET https://app.weby777.com/api/splash-pages/
curl --request GET \
--url 'https://app.weby777.com/api/splash-pages/' \
--header 'Authorization: Bearer {api_key}' \
Parametri Dettagli Descrizione
page Opzionale Intero Il numero di pagina da cui desideri ottenere i risultati. Predefinito a 1.
results_per_page Opzionale Intero Quanti risultati desideri per pagina. I valori consentiti sono: 10 , 25 , 50 , 100 , 250 , 500 , 1000. Predefinito a 25.
{ "data": [ { "id": 1, "name": "Development", "color": "#0e23cc", "last_datetime": "2021-03-14 21:22:37", "datetime": "2021-02-04 17:51:07" }, ], "meta": { "page": 1, "results_per_page": 25, "total": 1, "total_pages": 1 }, "links": { "first": "https://app.weby777.com/api/projects?&page=1", "last": "https://app.weby777.com/api/projects?&page=1", "next": null, "prev": null, "self": "https://app.weby777.com/api/projects?&page=1" } }
GET https://app.weby777.com/api/splash-pages/{splash_page_id}
curl --request GET \
--url 'https://app.weby777.com/api/splash-pages/{splash_page_id}' \
--header 'Authorization: Bearer {api_key}' \
{ "data": { "id": 1, "name": "Development", "color": "#0e23cc", "last_datetime": "2021-03-14 21:22:37", "datetime": "2021-02-04 17:51:07" } }
POST https://app.weby777.com/api/projects
Parametri Dettagli Descrizione
name Obbligatorio Stringa -
title Opzionale Stringa -
logo Opzionale File -
description Opzionale Stringa -
secondary_button_name Opzionale Stringa -
secondary_button_url Opzionale Stringa -
custom_css Opzionale Stringa -
custom_js Opzionale Stringa -
ads_header Opzionale Stringa -
ads_footer Opzionale Stringa -
link_unlock_seconds Opzionale Intero -
auto_redirect Opzionale Booleano -
curl --request POST \
--url 'https://app.weby777.com/api/projects' \
--header 'Authorization: Bearer {api_key}' \
--header 'Content-Type: multipart/form-data' \
--form 'name=Sample splash page' \
--form 'title=Custom splash page title' \
--form 'description=Custom splash page description' \
{ "data": { "id": 1 } }
POST https://app.weby777.com/api/splash-pages/{splash_page_id}
Parametri Dettagli Descrizione
name Opzionale Stringa -
title Opzionale Stringa -
logo Opzionale File -
description Opzionale Stringa -
secondary_button_name Opzionale Stringa -
secondary_button_url Opzionale Stringa -
custom_css Opzionale Stringa -
custom_js Opzionale Stringa -
ads_header Opzionale Stringa -
ads_footer Opzionale Stringa -
link_unlock_seconds Opzionale Intero -
auto_redirect Opzionale Booleano -
curl --request POST \
--url 'https://app.weby777.com/api/splash-pages/{splash_page_id}' \
--header 'Authorization: Bearer {api_key}' \
--header 'Content-Type: multipart/form-data' \
--form 'name=Sample splash page' \
--form 'title=Custom splash page title' \
--form 'description=Custom splash page description' \
{ "data": { "id": 1 } }
DELETE https://app.weby777.com/api/splash-pages/{splash_page_id}
curl --request DELETE \
--url 'https://app.weby777.com/api/splash-pages/{splash_page_id}' \
--header 'Authorization: Bearer {api_key}' \