স্প্ল্যাশ পেজগুলি

GET https://tistos.com/api/splash-pages/
curl --request GET \
--url 'https://tistos.com/api/splash-pages/' \
--header 'Authorization: Bearer {api_key}' \
প্যারামিটারসমূহ বিস্তারিত বিবরণ
page ঐচ্ছিক পূর্ণসংখ্যা আপনি যে পৃষ্ঠা নম্বর থেকে ফলাফল চান। ডিফল্ট 1
results_per_page ঐচ্ছিক পূর্ণসংখ্যা আপনি প্রতি পৃষ্ঠায় কতটি ফলাফল চান। অনুমোদিত মানগুলি হল: 10 , 25 , 50 , 100 , 250 , 500 , 1000। ডিফল্ট হল 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://tistos.com/api/projects?&page=1", "last": "https://tistos.com/api/projects?&page=1", "next": null, "prev": null, "self": "https://tistos.com/api/projects?&page=1" } }
GET https://tistos.com/api/splash-pages/{splash_page_id}
curl --request GET \
--url 'https://tistos.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://tistos.com/api/projects
প্যারামিটারসমূহ বিস্তারিত বিবরণ
name প্রয়োজনীয় স্ট্রিং -
title ঐচ্ছিক স্ট্রিং -
logo ঐচ্ছিক ফাইল -
favicon ঐচ্ছিক ফাইল -
opengraph ঐচ্ছিক ফাইল -
description ঐচ্ছিক স্ট্রিং -
secondary_button_name ঐচ্ছিক স্ট্রিং -
secondary_button_url ঐচ্ছিক স্ট্রিং -
custom_css ঐচ্ছিক স্ট্রিং -
custom_js ঐচ্ছিক স্ট্রিং -
ads_header ঐচ্ছিক স্ট্রিং -
ads_footer ঐচ্ছিক স্ট্রিং -
link_unlock_seconds ঐচ্ছিক পূর্ণসংখ্যা -
auto_redirect ঐচ্ছিক বুলিয়ান -
curl --request POST \
--url 'https://tistos.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://tistos.com/api/splash-pages/{splash_page_id}
প্যারামিটারসমূহ বিস্তারিত বিবরণ
name ঐচ্ছিক স্ট্রিং -
title ঐচ্ছিক স্ট্রিং -
logo ঐচ্ছিক ফাইল -
favicon ঐচ্ছিক ফাইল -
opengraph ঐচ্ছিক ফাইল -
description ঐচ্ছিক স্ট্রিং -
secondary_button_name ঐচ্ছিক স্ট্রিং -
secondary_button_url ঐচ্ছিক স্ট্রিং -
custom_css ঐচ্ছিক স্ট্রিং -
custom_js ঐচ্ছিক স্ট্রিং -
ads_header ঐচ্ছিক স্ট্রিং -
ads_footer ঐচ্ছিক স্ট্রিং -
link_unlock_seconds ঐচ্ছিক পূর্ণসংখ্যা -
auto_redirect ঐচ্ছিক বুলিয়ান -
curl --request POST \
--url 'https://tistos.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://tistos.com/api/splash-pages/{splash_page_id}
curl --request DELETE \
--url 'https://tistos.com/api/splash-pages/{splash_page_id}' \
--header 'Authorization: Bearer {api_key}' \