Splash pages

GET https://blynkn.net/api/splash-pages/
curl --request GET \
--url 'https://blynkn.net/api/splash-pages/' \
--header 'Authorization: Bearer {api_key}' \
parametreler Details Description
page İsteğe bağlı tamsayı Sonuç almak istediğiniz sayfa numarası. Varsayılan olarak 1 .
results_per_page İsteğe bağlı tamsayı Sayfa başına kaç sonuç istediğinizi. İzin verilen değerler: 10 , 25 , 50 , 100 , 250 , 500 , 1000. Varsayılan olarak 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://blynkn.net/api/projects?&page=1", "last": "https://blynkn.net/api/projects?&page=1", "next": null, "prev": null, "self": "https://blynkn.net/api/projects?&page=1" } }
GET https://blynkn.net/api/splash-pages/{splash_page_id}
curl --request GET \
--url 'https://blynkn.net/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://blynkn.net/api/projects
parametreler Details Description
name Gerekli Sicim -
title İsteğe bağlı Sicim -
logo İsteğe bağlı Dosya -
description İsteğe bağlı Sicim -
secondary_button_name İsteğe bağlı Sicim -
secondary_button_url İsteğe bağlı Sicim -
custom_css İsteğe bağlı Sicim -
custom_js İsteğe bağlı Sicim -
ads_header İsteğe bağlı Sicim -
ads_footer İsteğe bağlı Sicim -
link_unlock_seconds İsteğe bağlı tamsayı -
auto_redirect İsteğe bağlı Boole -
curl --request POST \
--url 'https://blynkn.net/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://blynkn.net/api/splash-pages/{splash_page_id}
parametreler Details Description
name İsteğe bağlı Sicim -
title İsteğe bağlı Sicim -
logo İsteğe bağlı Dosya -
description İsteğe bağlı Sicim -
secondary_button_name İsteğe bağlı Sicim -
secondary_button_url İsteğe bağlı Sicim -
custom_css İsteğe bağlı Sicim -
custom_js İsteğe bağlı Sicim -
ads_header İsteğe bağlı Sicim -
ads_footer İsteğe bağlı Sicim -
link_unlock_seconds İsteğe bağlı tamsayı -
auto_redirect İsteğe bağlı Boole -
curl --request POST \
--url 'https://blynkn.net/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://blynkn.net/api/splash-pages/{splash_page_id}
curl --request DELETE \
--url 'https://blynkn.net/api/splash-pages/{splash_page_id}' \
--header 'Authorization: Bearer {api_key}' \